Cod sursa(job #2396865)
Utilizator | Data | 3 aprilie 2019 21:25:19 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.23 kb |
#include <iostream>
#include <string.h>
#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;
}