#include <stdio.h>main(){ int x,y=0,z=0,t;do{ scanf("%d",&x);t=x>0;switch (t){ case 0: break;case 1: y+=x; continue;}z+=x;}while(x);printf("%d,%d\n",y,z);}程序运行时输入:-1 1 -2 2 0<回车>,则输出结果是什么