Cod sursa(job #390511)

Utilizator MathPlayerPopescu Bogdan Constantin MathPlayer Data 3 februarie 2010 21:38:43
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;

int main()
{
   long int x,y;
   ifstream f("adunare.in");
   ofstream g("adunare.out");
   f>>x>>y;
   g<<x+y;
}