Check Even Partitioning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Read input as specified in the question. | |
## Print output as specified in the question. | |
n=int(input()) | |
if n%2==0: | |
print("YES") | |
else: | |
print("NO") |
Comments
Post a Comment
Please give us your valuable feedback