Cod sursa(job #298746)
Utilizator | Data | 6 aprilie 2009 12:51:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
#include<iostream.h>
main ()
{
fstream in("date.in",ios::in),out("date.out",ios::out);
long a,b;
in>>a;
in>>b;
out<<a+b;
}