Cod sursa(job #2018412)

Utilizator AlexandruOlteanuOlteanu Alexandru AlexandruOlteanu Data 4 septembrie 2017 20:30:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<bits/stdc++.h>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{long long a,b;
in>>a>>b;
out<<a+b;
in.close();
out.close();
return 0;
}