Cod sursa(job #3182536)

Utilizator Gergo123Schradi Gergo Gergo123 Data 9 decembrie 2023 09:45:05
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 fin("adunare.in.txt");
ofstream fout("adunare.out.txt");

int main()
{
    int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}