// Page 017 import java.util.Scanner; class Q4 { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Which college? "); String college; college = input.next(); System.out.println("which state the college located at?"); String state; state = input.next(); System.out.println("You are attending " + college + ". The college is located at " + state); } }