Cod sursa(job #1008538)

Utilizator CostinVFMI CostinVictorGabriel CostinV Data 11 octombrie 2013 11:08:30
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include<iostream>
#include<fstream>
using namespace std;

int main()
{
    int x, y;

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

    f>>x;
    f>>y;

    g<<x+y;

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

    return 0;
}