Cod sursa(job #327291)

Utilizator TFifesPorcescu Alexandru TFifes Data 28 iunie 2009 02:38:20
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream.h>
#include<fstream.h>
void main()
{
int a,b,c;
ifstream x("adunare.in");
x>>a;
x>>b;
x.close();
c=a+b;
ofstream y("adunare.out");
y<<c;
y.close();
}