Cod sursa(job #2212929)

Utilizator shumsterVasile Mihai shumster Data 15 iunie 2018 12:32:10
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <bits/stdc++.h>

using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");

int main()
{
    int a, b;
    in >> a >> b;
    out << a + b;


	return 0;
}