Cod sursa(job #2777701)

Utilizator GasparAndreiGaspar Andrei GasparAndrei Data 23 septembrie 2021 22:12:04
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>

using namespace std;

ifstream cin("adunare.in");
ofstream cout("adunare.out");


int main()
{ 
    int a,b;
    cin >> a >> b;
    cout << a+b;
    

    
    return 0;
}