Cod sursa(job #1109018)
| Utilizator | Data | 16 februarie 2014 17:12:41 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{ifstream g("adunare.in");
ofstream f("adunare.out");
long long a,b,s;
g>>a>>b;
s=a+b;
f<<s;
}
