Cod sursa(job #2352781)

Utilizator AndreiGabriel.01Negreanu-Maior Andrei Gabriel AndreiGabriel.01 Data 23 februarie 2019 17:42:45
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;
    cin.close();
    cout.close();
    return 0;
}