Cod sursa(job #212824)
Utilizator | Data | 6 octombrie 2008 23:59:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream.h>
int main (){
int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >>a >>b;
fout << (a + b )<<'\n';
return 0;
}