Cod sursa(job #2225430)

Utilizator LIR16LazarIonutRadu LIR16 Data 27 iulie 2018 02:15:56
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
#include <cmath>

using namespace std;

long long int a,b;

ifstream in("adunare.in");
ofstream out("adunare.out");

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

    return 0;
}