Cod sursa(job #1667235)

Utilizator AndreiFlorescuAndrei Florescu AndreiFlorescu Data 28 martie 2016 19:34:26
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>

using namespace std;

int main() {
    ifstream file_in ("adunare.in");
    ofstream file_out ("adunare.out");

    int a, b;

    file_in >> a >> b;
    file_out << a + b;
    return 0;
}