Cod sursa(job #2923461)

Utilizator uibo9Huza Mihai Marian uibo9 Data 14 septembrie 2022 12:35:46
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb

#include <iostream>
#include <fstream>

using namespace std;

ifstream f("a.in");
ofstream g("a.out");

int main()
{
    int e, t, r;
    f >> e >> t;
    r = e + t;
    g << r;
    return 0;
}