Cod sursa(job #394381)

Utilizator AlexReddogBalan Alexandru-Mihai AlexReddog Data 10 februarie 2010 19:42:33
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include<fstream.h>

int main(){
ifstream fin("date.in");
ofstream fout("date.out");
long a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}