Cod sursa(job #230499)
| Utilizator | Data | 14 decembrie 2008 01:43:36 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream.h>
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b, s;
fin>>a>>b;
s = a + b;
fout<<s;
return 0;
}
