Cod sursa(job #1523488)
Utilizator | Data | 12 noiembrie 2015 19:44:50 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
f>>a>>b;
g<<a+b<<'\n';
return 0;
}