Submission #169050
Source Code Expand
Copy
include<iostream> using namespace std; int main(){ int S, T; cin >> S >> T; cout << T-S+1 << endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | A - アルバム |
User | kivantium |
Language | C++ (G++ 4.6.4) |
Score | 0 |
Code Size | 133 Byte |
Status | CE |
Compile Error
./Main.cpp:1:1: error: ‘include’ does not name a type ./Main.cpp: In function ‘int main()’: ./Main.cpp:5:5: error: ‘cin’ was not declared in this scope ./Main.cpp:6:5: error: ‘cout’ was not declared in this scope ./Main.cpp:6:22: error: ‘endl’ was not declared in this scope