#include #include int main() { int a; std::cin >> a; std::experimental::optional n{a}; std::cout << *n << " " << 0 << std::endl; return 0; }