Cod sursa(job #11064)

Utilizator BlackElfSpulber Iosif BlackElf Data 30 ianuarie 2007 13:43:03
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <iostream.h>
#include <fstream.h>

ifstream in ("adunare.in");
ofstream out ("adunare.out");

int main ()
{
long a,b;
in>>a>>b;
out<<a+b;
return 0;
}