Cod sursa(job #94484)
Utilizator | Data | 23 octombrie 2007 12:19:57 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
#include<conio.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
void main()
{int a,b,s;
f>>a>>b;
s=a+b;
g<<s;
}