Cod sursa(job #120790)
Utilizator | Data | 6 ianuarie 2008 17:21:08 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
ifstream f("suma.in");
ofstream g("suma.out");
void main()
{
unsigned a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
}