import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); if (N % 4 == 0) { if (N % 100 != 0) { System.out.print("Yes"); } else if (N % 400 == 0) { System.out.print("Yes"); } else { System.out.print("No"); } }else{ System.out.print("No"); } } }