import java.util.*; public class Test2 { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.println(helper(in.nextInt(), in.nextInt())); } public static int helper(int l, int r) { int count = 0; while (l < r) { ...