Cod sursa(job #120809)
Utilizator | Data | 6 ianuarie 2008 18:04:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
ifstream f("suma.in");
ofstream g("suma.out");
int main()
{
unsigned a,b;
f>>a;
f>>b;
g<<a+b<<endl;
f.close();
g.close();
return 1;
}