Cod sursa(job #2853657)
Utilizator | Data | 20 februarie 2022 15:01:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
f >> a >> b;
g << a+b<< endl;
return 0;
}