Cod sursa(job #1707399)
Utilizator | Data | 24 mai 2016 23:46:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
int main()
{
std::ifstream in ("sum.in");
std::ofstream out("sum.out");
int a, b;
std::cout << "Hi";
in >> a >> b;
out << a + b;
}