Cod sursa(job #2917636)

Utilizator Andrei2004Ionascu Andrei Andrei2004 Data 6 august 2022 13:41:39
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 g("adunare.out");
    f>>a>>b;
    g<<a+b;
    return 0;
}