Cod sursa(job #2756144)

Utilizator otherBuleu Cosmin other Data 29 mai 2021 23:21:12
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 main()
{
    int A,B;
    fin>>A>>B;
    fout<<A+B;
    return 0;
}