Cod sursa(job #2956867)
| Utilizator | Data | 20 decembrie 2022 22:04:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Lista lui wefgef | Marime | 0.2 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a, b, s;
int main()
{
f >> a >> b;
s = a + b;
g << s;
return 0;
}
