Cod sursa(job #444389)

Utilizator x.5p1k3Gheorghiu Andrei-Ionut x.5p1k3 Data 20 aprilie 2010 12:33:43
Problema A+B Scor 100
Compilator cpp Status done
Runda Tema 10D #1 Marime 0.23 kb
#include<iostream.h> 
#include<fstream.h> 
int main(){      
ifstream f("adunare.in");     
ofstream g("adunare.out");          
long int a,b;      
f>>a;     
f>>b;     
g<<a+b;      
f.close();     
g.close(); 
return 0;}