求一道三个数相加的题?

问题描述:

求一道三个数相加的题?
用C语言写的?急、急…

include
void main ()
{
int a,b,c;
printf("输入二个数");
scanf("%d,%d",&a,&b)
;
c=a+b;
printf("%d\n",c);
}