Cod sursa(job #2532495)
Utilizator | Data | 27 ianuarie 2020 21:21:22 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-32 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
long long a,b;
int main()
{
ifstream f ("adunare.in");
f>>a>>b;
f.close ();
ofstream g ("adunare.out");
g<<a+b;
g.close();
return 0;
}