Submission #146321


Source Code Expand

using namespace std;

int main (void)
{
	int x, y;
	cin >> x;
    cin >> y;
	cout << x-y << endl;
    return 0;
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:6:2: error: ‘cin’ was not declared in this scope
./Main.cpp:8:2: error: ‘cout’ was not declared in this scope
./Main.cpp:8:17: error: ‘endl’ was not declared in this scope