Cod sursa(job #2989367)

Utilizator MonGhoulzBantas Robert Alexandru MonGhoulz Data 6 martie 2023 15:21:38
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <fstream>
#include <iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b,S;
int main()
{
    fin>>a>>b;
    S=a+b;
    fout<<S<<endl;
    fin.close();
    fout.close();
    return 0;
}