Cod sursa(job #2641833)

Utilizator R0b3rtGIancu Marius-Roberto R0b3rtG Data 12 august 2020 20:09:50
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");

int main()
{
    int a;
    int b;
    in >> a;
    in >> b;
    out << (long long)a + b;
    out.close();
    in.close();
    return 0;
}