Cod sursa(job #861882)
| Utilizator | Data | 21 ianuarie 2013 23:06:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
long a,b;
ifstream f("adunare.in"); f >>a >>b;
ofstream g("adunare.out"); g << a+b;
return 0;
}
