Submission #5438002


Source Code Expand

int main(){
  int a, b;
  scanf("%d %d", &a, &b);
  printf("%d\n", a - b);
	return 0;
}

Submission Info

Submission Time
Task A - 積雪深差
User proton
Language C++14 (GCC 5.4.1)
Score 0
Code Size 92 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:3:24: error: ‘scanf’ was not declared in this scope
   scanf("%d %d", &a, &b);
                        ^
./Main.cpp:4:23: error: ‘printf’ was not declared in this scope
   printf("%d\n", a - b);
                       ^