Cod sursa(job #1252123)
| Utilizator | Data | 30 octombrie 2014 13:57:01 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
int main()
{int a,b,s1;
fstream f ("adun.in",ios::in);
f>>a>>b;
s1=a+b;
fstream g ("adun.out",ios::out);
g<<s1;
f.close();g.close();
return 0;
}
