407207: GYM102697 178 Multiple of Two
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
178. Multiple of Twotime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output This problem is worth 5 points.
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 problems, we recommend that you read all problems (since harder problems give more points).
Good luck! Here's the first problem:
Given 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.
InputThe only line of input contains a positive integer.
OutputPrint YES if the integer is a multiple of 2, and NO otherwise.
ExamplesInput3Output
NOInput
10Output
YES