CSES - E4590 2018 0 - Results
Submission details
Task:A + B
Sender:nokka7
Submission time:2018-09-07 16:52:41 +0300
Language:C++
Status:COMPILE ERROR

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:10:10: error: 'c' was not declared in this scope
  cout << c;
          ^

Code

#include <bits/stdc++.h>
using namespace std;
long long A;
long long B;
long long C;
int main () {
	cin >> A;
	cin >> B;
	C=A+B;
	cout << c;
}