Cod sursa(job #395203)

Utilizator STOLOMocioi Andrei STOLO Data 12 februarie 2010 14:58:45
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.12 kb
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
signed long a,b;
int main(){
f>>a>>b;
g<<a+b;
}