{"raw_statement":[{"iden":"statement","content":"Vasya has a non-negative integer _n_. He wants to round it to nearest integer, which ends up with 0. If _n_ already ends up with 0, Vasya considers it already rounded.\n\nFor example, if _n_ = 4722 answer is 4720. If _n_ = 5 Vasya can round it to 0 or to 10. Both ways are correct.\n\nFor given _n_ find out to which integer will Vasya round it."},{"iden":"input","content":"The first line contains single integer _n_ (0 ≤ _n_ ≤ 109) — number that Vasya has."},{"iden":"output","content":"Print result of rounding _n_. Pay attention that in some cases answer isn't unique. In that case print any correct answer."},{"iden":"examples","content":"Input\n\n5\n\nOutput\n\n0\n\nInput\n\n113\n\nOutput\n\n110\n\nInput\n\n1000000000\n\nOutput\n\n1000000000\n\nInput\n\n5432359\n\nOutput\n\n5432360"},{"iden":"note","content":"In the first example _n_ = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10."}],"translated_statement":[{"iden":"statement","content":"Vasya 有一个非负整数 $n$。他希望将其四舍五入到最近的、以 $0$ 结尾的整数。如果 $n$ 已经以 $0$ 结尾，Vasya 认为它已经四舍五入。\n\n例如，如果 $n = 4722$，答案是 $4720$。如果 $n = 5$，Vasya 可以将其四舍五入到 $0$ 或 $10$，两种方式都是正确的。\n\n对于给定的 $n$，请找出 Vasya 会将其四舍五入到哪个整数。\n\n第一行包含一个整数 $n$（$0 ≤ n ≤ 10^9$）——Vasya 拥有的数字。\n\n请输出对 $n$ 四舍五入的结果。请注意，在某些情况下答案不唯一。在这种情况下，请输出任意一个正确答案。\n\n在第一个例子中，$n = 5$。以零结尾的最近整数是 $0$ 和 $10$。这两个答案都是正确的，因此你可以输出 $0$ 或 $10$。\n\n"},{"iden":"input","content":"第一行包含一个整数 $n$（$0 ≤ n ≤ 10^9$）——Vasya 拥有的数字。"},{"iden":"output","content":"请输出对 $n$ 四舍五入的结果。请注意，在某些情况下答案不唯一。在这种情况下，请输出任意一个正确答案。"},{"iden":"examples","content":"输入\n5\n输出\n0\n\n输入\n113\n输出\n110\n\n输入\n1000000000\n输出\n1000000000\n\n输入\n5432359\n输出\n5432360"},{"iden":"note","content":"在第一个例子中，$n = 5$。以零结尾的最近整数是 $0$ 和 $10$。这两个答案都是正确的，因此你可以输出 $0$ 或 $10$。"}],"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ n \\in \\mathbb{Z}_{\\geq 0} $ be the input integer.\n\n**Constraints**  \n$ 0 \\leq n \\leq 10^9 $\n\n**Objective**  \nFind an integer $ r $ such that:  \n- $ r \\equiv 0 \\pmod{10} $,  \n- $ |n - r| $ is minimized.  \n\nIf multiple such $ r $ exist, output any one.","simple_statement":null,"has_page_source":false}