Cod sursa(job #1909062)
Utilizator | Data | 7 martie 2017 11:32:29 | |
---|---|---|---|
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()
{
unsigned long long a,b;
in >> a >> b;
out << a+b;
}