Cod sursa(job #2311846)
Utilizator | Data | 3 ianuarie 2019 19:13:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
# include <bits/stdc++.h>
using namespace std;
ifstream fi ("adunare.in");
ofstream fo ("adunare.out");
long long n,m;
int main ()
{
fi >> n >> m;
fo << n + m;
return 0;
}