Cod sursa(job #2146736)

Utilizator xtrzplayerCornea Radu Valentin xtrzplayer Data 28 februarie 2018 10:23:12
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.18 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main ()
{
    unsigned long long a, b;
    f >> a >> b;
    g << a + b;
}