Compile Error
/in/foo.cs(2,0): error CS1024: Wrong preprocessor directive /in/foo.cs(2,0): error CS1525: Unexpected symbol `int' Compilation failed: 2 error(s), 0 warnings
代码
#include<stdio.h>
int main()
{
int a,b,sum;
scanf("%d,%d",&a,&b);
sum=a+b;
printf("%d",sum);
return 0;
}