Problem hidden
This problem was hidden by Editorial Board member probably because it has incorrect language version or invalid test data, or description of the problem is not clear.

EIUPH002 - Leap year

Leap year is a year which has 366 days. A year is leap year if it divisible by four, except for years that are exactly divisible by 100,  but these centurial years are leap years if they are exactly divisible by 400. Given a year n, check if n is leap year or not.

Input

The only integer n  (0<=n<=10^9).

Output

Output "YES" if n is leap year, otherwise ouput "NO"

Example

Input:
2016

Output:
YES

© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.