Cod sursa(job #893995)
| Utilizator | Data | 26 februarie 2013 19:09:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.18 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
main()
{
f>>a;
f>>b;
g<<a+b;
}
