Cod sursa(job #2195175)
Utilizator | Data | 15 aprilie 2018 15:29:02 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
long long a,b;
int main()
{
ifstream f1("adunare.in")
ofstream f2("adunare.out")
f1 >> a >> b;
f2 << a+b;
}