Cod sursa(job #1627536)

Utilizator SburlyAndrei Florin Sburly Data 3 martie 2016 17:45:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.29 kb
/********************
    Created by Sburly
********************/
#include <iostream>
#include <fstream>

using namespace std;

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

    long int a, b;

    f >> a >> b;

    g << a+b;

    return 0;
}