Submission #146305


Source Code Expand

#include <iostream>
using namespace std;

int main(void)
{
	int x, y;

	scanf("%d\n%d", &x, &y);
	printf("%d\n", x - y);    
	
	return 0;
}

Submission Info

Submission Time
Task A - 積雪深差
User B09453my
Language C++ (G++ 4.6.4)
Score 0
Code Size 150 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:8:24: error: ‘scanf’ was not declared in this scope
./Main.cpp:9:22: error: ‘printf’ was not declared in this scope