Cod sursa(job #279599)

Utilizator Cristy94Buleandra Cristian Cristy94 Data 12 martie 2009 21:27:44
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
int main(){
f>>a>>b;
g<<a+b;
return 0;
}