Cod sursa(job #2333177)
Utilizator | Data | 31 ianuarie 2019 19:09:02 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include "pch.h"
#include <fstream>
using namespace std;
int main()
{
ifstream i("adunare.in");
ofstream o("adunare.out");
int a, b;
i >> a >> b;
o << a + b;
i.close();
o.close();
}