I configured vijos (including jd4) on my own server, after submitting a program, it showed system error, prompting me BrokenPipeError(32, 'Broken pipe').
My code: (as you see, it's A+B problem)
//cpp
#include<cstdio>
using namespace std;
int a,b;
int main()
{
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
return 0;
}
I couldn't find out what's wrong with jd4, so I come for help.
I configured vijos (including jd4) on my own server, after submitting a program, it showed
system error, prompting meBrokenPipeError(32, 'Broken pipe').My code: (as you see, it's A+B problem)
I couldn't find out what's wrong with jd4, so I come for help.