Show More
Commit Description:
autonew skips submissions with bad problems, forbids getch, better compiler msg when preprocessing fails, reports compile error when the executable is too large (100MB)
Commit Description:
autonew skips submissions with bad problems, forbids getch, better compiler msg when preprocessing fails, reports compile error when the executable is too large (100MB)
File last commit:
Show/Diff file:
Action:
test/data/test1_correct_cc.cc | 13 lines | 126 B | text/x-c | CppLexer |
/*
LANG: C++
*/
#include <cstdio>
int main()
{
int a,b,r;
r = scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}