Cod sursa(job #1565908)

Utilizator Cont100Nume Complet Cont100 Data 11 ianuarie 2016 17:30:17
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;

int main() {
    ifstream fin("adunare.in");
    ofstream fout("adunare.out");
    long a, b;
    fin >> a >> b;
    fout << a + b;
    return 0;
}