Cod sursa(job #3196710)

Utilizator Alex_at_gameIustin-Alexandru Frateanu Alex_at_game Data 24 ianuarie 2024 17:08:08
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 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;

    return 0;
}