import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int d1 = sc.nextInt(); int d2 = sc.nextInt(); int count; if (d1 * 2 < d2) { count = 0; } else if (d1 * 2 == d2) { count = 4; } else if (d1 < d2) { count = 8; } else if (d1 == d2) { count = 4; } else { count = 0; } System.out.println(count); } }