Cod sursa(job #2268570)
Utilizator | Data | 24 octombrie 2018 22:56:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.3 kb |
#include <bits/stdc++.h>
#include <fstream>
using namespace std ;
ifstream fin("cod.in") ;
ofstream fout("cod.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 ;
}