Cod sursa(job #2201184)
| Utilizator | Data | 3 mai 2018 20:38:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <fstream>
#include <iostream>
#include <algorithm>
#include <cmath>
#define ll unsigned long long
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
ll a, b;
in >> a >> b;
out << a + b;
}