Cod sursa(job #1681896)

Utilizator bciobanuBogdan Ciobanu bciobanu Data 9 aprilie 2016 19:57:04
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.3 kb
#include <bits/stdc++.h>

using namespace std;

int main() {
    ifstream fin("adunare.in");
    ofstream fout("adunare.out");
    fin.tie(0);
    ios_base::sync_with_stdio(false);
    int A, B;
    fin >> A >> B;
    fin.close();

    fout << A + B << '\n';
    fout.close();

    return 0;
}