Cod sursa(job #2871700)

Utilizator eighfwmoisescu eighfw Data 15 martie 2022 15:40:03
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

int A,B;

int main()
{
    fin>>A>>B;
    fout<<A+B;
}