Cod sursa(job #2268581)
Utilizator | Data | 24 octombrie 2018 23:06:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.3 kb |
#include <bits/stdc++.h>
#include <fstream>
using namespace std ;
ifstream fin("adunare.in") ;
ofstream fout("adunare.out") ;
int main()
{
ios_base::sync_with_stdio(false) ;
cin.tie(NULL) ;
int a ; fin >> a ;
int b ; fin >> b ;
fout << (a + b) ;
return 0 ;
}