Need help in "ACMSGURU" problem 1

Revision en1, by pop1912, 2021-01-04 08:13:42

Hi, Could you help me in this problem. "https://codeforces.com/problemsets/acmsguru/problem/99999/100".

My solution is my-submission. I'm getting WA, help me identify the mistake.

#include<iostream>
#include<fstream>
using namespace std;

int  main() {
    ifstream fin("input.in");
    ofstream fout("output.out");
    
    int a,b;
    fin>>a>>b;
    
    fout<<a + b<<"\n";
    
    return 0;
}

Thanks, pop1912

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English pop1912 2021-01-04 08:13:42 566 Initial revision (published)