Cod sursa(job #2787482)

Utilizator BeilandArnoldArnold Beiland BeilandArnold Data 23 octombrie 2021 14:23:37
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream bemenet("adunare.in");
    ofstream kimenet("adunare.out");

    int x, y;
    bemenet >> x >> y;
    kimenet << x + y << endl;

    return 0;
}