Cod sursa(job #2795614)

Utilizator P1zd0SuntBetoAlbert Beto P1zd0SuntBeto Data 6 noiembrie 2021 18:07:36
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;
int a, b;
int main()
{
    ifstream f("adunare.in");
    ofstream o("adunare.out");
    f >> a >> b;
    o << a+b;
    return 0;
}