/ SeriousOJ /

Record Detail

Compile Error

foo.c: In function 'main':
foo.c:9:15: error: stray '\302' in program
    9 |         return<U+00A0>0;
      |               ^~~~~~~~

Code

#include <stdio.h>

int main()
{
    long long a,b;
    while(scanf(("%lld %lld"),&a,&b) != EOF) {
		printf("%lld\n",(b-a));
    }
	return 0;
}

Information

Submit By
Type
Pretest
Problem
P1000 A + B
Language
C99 (GCC 13.2.0)
Submit At
2024-03-18 17:43:19
Judged At
2024-10-03 13:59:23
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes