package msoe.se280.introlab; import java.util.Scanner; /** * @author hornick * ??? */ public class IntroLabApp { /** * @param args ??? */ public static void main(String[] args) { // Prompt the user for input and convert to int's System.out.print("Enter two integers: "); Scanner reader = new Scanner(System.in); int x = reader.nextInt(); int y = reader.nextInt(); } }