Cod sursa(job #2254134)
Utilizator | Data | 4 octombrie 2018 20:06:11 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
fstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long long a,b;
f>>a>>b;
g<<a+b;
return 0;
}