Cod sursa(job #310426)
Utilizator | Data | 2 mai 2009 11:31:59 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
fstream f("date.in", ios::in)
fstream g("date.out", ios::out)
main()
{
int a, b, s=0;
f>>a;
f>>b;
s=a+b;
g<<s;
}