Cod sursa(job #2469592)
| Utilizator | Data | 7 octombrie 2019 19:13:49 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long long int a, b, s;
f>>a;
f>>b;
s=a+b;
g<<s;
}
