Cod sursa(job #2956866)
Utilizator | Data | 20 decembrie 2022 22:03:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | teme_upb | 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;
}