#include [[nodiscard]] static inline constexpr std::string solve(const std::string& N) noexcept { if (N == "0") return N; else return N + '0'; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::string N; N.reserve(22), std::cin >> N; std::cout << solve(N) << '\n'; return 0; }