import java.util.Scanner; // Import the Scanner class
public class Main {
public static void main(String[] args) {
Scanner userInput = new Scanner(System.in); // Create a Scanner object
System.out.println("Enter your zip code:");
int zipCode = userInput.nextInt(); // Read user input
System.out.println("Zip code: " + zipCode); // Output user input
}
}
/* Output:
Enter your zip code:
90232
Zip code: 90232
*/