{"problem":{"name":"178. Multiple of Two","description":{"content":"Welcome to the CodeRams team competition! If you're not sure on the competition format or how to submit solutions, read this first. Since your team may not have time to get through all of the proble","description_type":"Markdown"},"platform":"Codeforces","limit":{"time_limit":1000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"CF10269178"},"statements":[{"statement_type":"Markdown","content":"Welcome to the CodeRams team competition!\n\nIf you're not sure on the competition format or how to submit solutions, read this first.\n\nSince your team may not have time to get through all of the problems, we recommend that you read all problems (since harder problems give more points).\n\nGood luck! Here's the first problem:\n\nGiven a positive number, figure out whether or not it is a multiple of two. For example, 6 is a multiple of two, while 11 is not a multiple of two.\n\nThe only line of input contains a positive integer.\n\nPrint YES if the integer is a multiple of 2, and NO otherwise.\n\n## Input\n\nThe only line of input contains a positive integer.\n\n## Output\n\nPrint YES if the integer is a multiple of 2, and NO otherwise.\n\n[samples]","is_translate":false,"language":"English"},{"statement_type":"Markdown","content":"**Definitions**  \nLet $ n \\in \\mathbb{Z}^+ $ be the input integer.\n\n**Objective**  \nDetermine whether $ n \\equiv 0 \\pmod{2} $.  \n\n**Output**  \n$$\n\\begin{cases}\n\\text{YES} & \\text{if } n \\equiv 0 \\pmod{2} \\\\\n\\text{NO} & \\text{otherwise}\n\\end{cases}\n$$","is_translate":false,"language":"Formal"}],"meta":{"iden":"CF10269178","tags":[],"sample_group":[],"created_at":"2026-03-03 11:00:39"}}