Cod sursa(job #3149071)

Utilizator WaffleDuffleConstantin Denis WaffleDuffle Data 6 septembrie 2023 09:29:46
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
std::ifstream f("adunare.in");
std::ofstream g("adunare.out");
int main() {
    long long a, b;
    f >> a >> b;
    g << a + b << std::endl;
    f.close();
    g.close();
    return 0;
}