Cod sursa(job #2740152)

Utilizator snooppyshIoana Delia snooppysh Data 11 aprilie 2021 18:14:57
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
int main()
{
    fin >> a;
    fin >> b;
    fout << a + b;
}