Cod sursa(job #2655163)
Utilizator | Data | 3 octombrie 2020 13:56:40 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> a;
f >> b;
g << a+b;
f.close();
g.close();
return 0;
}