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