Cod sursa(job #113577)
Utilizator | Data | 10 decembrie 2007 20:37:54 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream>
#include<fstream>
ifstream f ("adunare.in");
ofstream g ("adunare.out");
void main()
{ long a,b;
f>>a;
f>>b;
g<<(a+b);
}