Cod sursa(job #2480502)
Utilizator | Data | 25 octombrie 2019 18:11:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | cdib_8910 | Marime | 0.24 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long long a,b,c;
f>>a>>b;
c=a+b;
g<<c;
f.close();
g.close();
return 0;
}