Cod sursa(job #2789001)
Utilizator | Data | 26 octombrie 2021 19:20:13 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | teme_upb | Marime | 0.23 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.of");
int a , b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}