import java.util.Scanner;
// 1. Scanner 객체 생성
Scanner sc = new Scanner(System.in);
// 자주 쓰이는 것들
int num = sc.nextInt(); // int 입력받기
String str = sc.next(); // 한 단어 입력받기
String str = sc.nextLine(); // 한 줄 입력받기
char ch = sc.nextLine().charAt(0); // 문자 입력받기
byte a = sc.nextByte(); // byte 입력
short b = sc.nextShort(); // short 입력
long c = sc.nextLong(); // long 입력
float d = sc.nextFloat(); // float 입력
double e = sc.nextDouble(); // double 입력
boolean f = sc.nextBoolean(); // boolean 입력