public class Solution { static Integer first = 1000; static Integer second = 1000; static int third = 1000; public static void main(String[] args) { System.out.println(first == second); System.out.println(third == second); почему true? System.out.println(third == first); почему true? } }