Cod sursa(job #1010433)
Utilizator | Data | 14 octombrie 2013 21:06:42 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream datein( "adunare.in") ;
ofstream dateout("adunare.out") ;
int main()
{
int a , b ;
datein >> a >> b ;
dateout << a+b ;
datein.close() ;
dateout.close() ;
return 0 ;
}