Cod sursa(job #2534024)

Utilizator lmihaigLicu Mihai lmihaig Data 29 ianuarie 2020 22:52:37
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream f("adunare.in");
    ofstream o("adunare.out");
    int x,y;
    f>>x>>y;
    o<<x+y;
}