Cod sursa(job #2298769)

Utilizator H3kapooBoje Andrei H3kapoo Data 8 decembrie 2018 14:35:56
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream g("adunare.in");
    ofstream h("adunare.out");
    int a,b;
    g >> a >> b;
    h << a+b;


    return 0;
}