Cod sursa(job #2446524)

Utilizator ZheroAlexandru Culea Zhero Data 9 august 2019 13:47:50
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 f("adunare.in");
    int A,B;
    f>>A>>B;
    f.close();
    ofstream g("adunare.out");
    g<<A+B;
    return 0;
}