Cod sursa(job #634946)

Utilizator yonut95Voicu Ionut yonut95 Data 17 noiembrie 2011 23:11:17
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream.h>
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
void main()
{
f>>a;
f>>b;
g<<a+b;;
f.close();
g.close();}