Cod sursa(job #2308018)

Utilizator caoashMichael Cao caoash Data 26 decembrie 2018 06:28:46
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <bits/stc++.h>
using namespace std;
#define MAXN 100000
 
ifstream fin ("adunare.in");
ofstream fout("adunare.out");

int a,b;

int main()
{
   
    fin >> a >> b;
    fout << a + b << endl;    
    return 0;
}