Cod sursa(job #1381613)
| Utilizator | Data | 8 martie 2015 12:48:18 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.18 kb |
#include<fstream>
using namespace std;
int main()
{int a,b,s;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
f.close();
s=a+b;
g<<s;
g.close();
return 0;}
