Cod sursa(job #2580525)
Utilizator | Data | 13 martie 2020 18:32:36 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | 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, c;
in>>a>>b;
c = a + b;
out<<c;
return 0;
}