Cod sursa(job #857386)

Utilizator Ieronim93Pantiru Ieronim Ieronim93 Data 17 ianuarie 2013 19:43:36
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include<fstream>

using namespace std;

ifstream f("adunare.in.txt");
ofstream g("adunare.out.txt");

int a,b;

int main()

{
  f>>a>>b;
  g<<a+b;

  f.close();
  g.close();

    return 0;
}