목차

[G] Grounded Number

ps
링크acmicpc.net/…
출처BOJ
문제 번호34019
문제명[G] Grounded Number
레벨골드 5
분류

애드혹

시간복잡도O(1)
사용한 언어Python 3.13
제출기록32412KB / 32ms
최고기록28ms
해결날짜2026/03/03

풀이

코드

"""Solution code for "BOJ 34019. [G] Grounded Number".

- Problem link: https://www.acmicpc.net/problem/34019
- Solution link: http://www.teferi.net/ps/problems/boj/34019

Tags: [ad hoc]
"""


def main():
    N = int(input())
    print('Yes' if N % 2 == 0 else 'No')


if __name__ == '__main__':
    main()