What do you import to use Scanner?
import java.util.Scanner;
How do you confirm using Scanner?
Scanner nameOfFunction = new Scanner(System.in);
What must you type if you want an int?
What about a double or string?
What about a boolean?
String nameOfFunction = input.nextLine()
int nameOfFunction = input.nextInt()
double nameOfFunction = input.nextDouble()
boolean nameOfFunction = input.nextBoolean()