Cod sursa(job #975375)

Utilizator adialexpopPop Adrian adialexpop Data 19 iulie 2013 22:58:19
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>

using namespace std;

int A,B;

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

    f>>A>>B;

    g<<A+B;

    return 0;
}