public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int offer = scanner.nextInt(); while (offer < Integer.MAX_VALUE){ offer++; } } }