CSES - E4590 2018 0 - Results
Submission details
Task:A + B
Sender:soujanya
Submission time:2018-09-08 07:05:32 +0300
Language:C++
Status:COMPILE ERROR

Compiler report

input/code.cpp:5:14: error: two or more data types in declaration of 'main'
 int int main() {
              ^

Code

#include <cstdio>
#include<iostream>

using namespace std;
int int main() {
    long long int A,B;
    cin >> A >> B;
    cout << A+B << endl;
    return 0;
}