Cod sursa(job #2649724)
Utilizator | Data | 16 septembrie 2020 00:15:11 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.in");
int main()
{
int a, b;
f >> a >> b;
g << a + b;
return 0;
}