Cod sursa(job #2198585)
Utilizator | Data | 24 aprilie 2018 18:52:28 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{long a, b; in >> a >> b; out << a + b;return 0}