Cod sursa(job #532749)
| Utilizator | Data | 12 februarie 2011 13:06:50 | |
|---|---|---|---|
| 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;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
f>>a;
f>>b;
g<<a+b;
}
