Cod sursa(job #2397868)
Utilizator | Data | 4 aprilie 2019 20:26:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <bits/stdc++.h>
using namespace std;
int main()
{int a,b;
ifstream f("adunare.in");
f>>a>>b;
ofstream g("adunare.out");
g<< a+b;
f.close();
g.close();
return 0;
}