Cod sursa(job #1419645)

Utilizator RaresCRares Cristian RaresC Data 16 aprilie 2015 00:51:56
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb

#include <fstream>
#include <iostream>
using namespace::std;

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