Cod sursa(job #137980)
Utilizator | Data | 17 februarie 2008 18:40:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
# include <iostream>
# include <fstream>
using namespace std ;
int main ( ) {
ifstream sin ( "adunare.in" ) ;
int a , b , c;
sin >> a >> b ;
c = a + b ;
ofstream sout ( "adunare.out" ) ;
sout << c << endl ;
return 0 ;
}