Cod sursa(job #2330537)
Utilizator | Data | 28 ianuarie 2019 16:10:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
long long int x, y, s;
in >> x >> y;
s = x + y;
out << s;
}