Cod sursa(job #696064)
| Utilizator | Data | 28 februarie 2012 16:35:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream g("adunare.in");
ofstream h("adunare.out");
long long a, b;
g>>a>>b;
h<<a+b;
}