Cod sursa(job #718102)
| Utilizator | Data | 20 martie 2012 15:27:28 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
int main() {
ifstream in("adunare.in");
ofstream out("adunare.out");
int a,b,s;
in>>a>>b;
s=a+b;
out<<s;
in.close();
out.close();
}
