/ SeriousOJ /

রেকর্ড বিশদ

Compile Error

foo.c: In function 'main':
foo.c:9:1: error: stray '\302' in program
    9 |     return 0;
      | ^
foo.c:9:2: error: stray '\302' in program
    9 |     return 0;
      |  ^
foo.c:9:3: error: stray '\302' in program
    9 |     return 0;
      |   ^
foo.c:9:4: error: stray '\302' in program
    9 |     return 0;
      |    ^
foo.c:9:11: error: stray '\302' in program
    9 |     return 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 11.4.0)
Submit At
2024-03-18 17:43:06
Judged At
2024-03-18 17:43:06
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes