Cod sursa(job #79971)

Utilizator selenStefana Berenghia selen Data 24 august 2007 21:06:30
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream.h>
#include<conio.h>
#include<fstream.h>
void main()
{long a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
getch();}