Cod sursa(job #1433925)

Utilizator DanielRusuDaniel Rusu DanielRusu Data 10 mai 2015 10:56:00
Problema A+B Scor 100
Compilator cpp Status done
Runda preitmarathon2015 Marime 0.24 kb
#include <fstream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

long long a, b;

int main() {
    fin >> a >> b;

    fout << a + b << '\n';

    fin.close();
    fout.close();

    return 0;
}