//
//import java.util.*;
//
//class Day {
// private String work;
//
// void set(String work) {
// this.work = work;
// }
//
// String get() {
// return work;
// }
//
// void show() {
// if (work == null)
// System.out.println("없습니다.");
// else
// System.out.println(work + "입니다");
// }
//
//}
//
//class MonthSchedule {
//
// int days;
//
// Scanner sc = new Scanner(System.in);
//
// Day d[] = new Day[31];
//
// public MonthSchedule(int days) {
//
// this.days = days;
//
// for (int i = 0; i < days; i++) {
//
// d[i] = new Day();
//
// }
//
// }
//
// void run() {
//
// System.out.println("이번달 스케쥴 관리 프로그램.");
//
// while (true)
//
// {
//
// System.out.print("할일(입력:1, 보기:2, 끝내기:3 >>");
//
// int num = sc.nextInt();
//
// if (num == 1)
// input();
//
// else if (num == 2)
// view();
//
// else if (num == 3) {
//
// System.out.println("프로그램을 종료합니다.");
// break;
// }
//
// }
//
// }
//
// void input() {
//
// System.out.print("날짜(1~30)?");
//
// int innum = sc.nextInt();
//
// System.out.print("할일(빈칸없이입력)?");
//
// String inwork = sc.next();
//
// d[innum-1].set(inwork);
//
// }
//
// void view() {
//
// System.out.print("날짜(1~30)?");
//
// int vinum = sc.nextInt();
// System.out.print(vinum+"일의 할일은");
// d[vinum-1].show();
//
//
// }
//
//}
//
//class Main {
//
// public static void main(String[] args) {
//
// MonthSchedule april = new MonthSchedule(30);
//
// april.run();
//
// }
//
//}
//
//import java.util.*;
//
//class Phone {
// String name;
// String tel;
// void set(String name, String tel) {
// this.name=name;
// this.tel=tel;
// }
//}
//
//class Main {
//
// public static void main(String[] args) {
//
// Scanner sc = new Scanner(System.in);
//
// System.out.print("인원수>>");
//
// int num = sc.nextInt();
// int i=0;
// Phone[] p = new Phone[num];
// for(i=0;i<p.length;i++)
// {
// p[i]= new Phone();
// }
//
// for (i = 0; i < num; i++)
// {
// System.out.print("이름과 전화번호(이름과 번호는 빈 칸없이 입력)>>");
//
// String name = sc.next();
// String tel = sc.next();
//
// p[i].set(name, tel);
//
// }
//
// System.out.println("저장되었습니다...");
//
// while (true) {
// int asd=0;
// System.out.print("검색할 이름>>");
//
// String name = sc.next();
//
// if (name.equals("그만")) {
//
// break;
//
// }
//
// for(i=0;i<p.length;i++)
// {
// if((p[i].name).equals(name))
// {
// System.out.println(name+"의 번호는"+p[i].tel+"입니다.");
// break;
// }
// else {
// asd++;
// }
//
// }
// if(asd==p.length)
// System.out.println(name+"이 없습니다.");
//
//
// }
//
//
// }
//}
//
//import java.util.*;
//
//class ArrayUtil{
// static int [] concat(int[] a, int[] b) {
// int [] ab=new int[a.length+b.length];
// for(int i=0;i<a.length;i++)
// {
// ab[i]=a[i];
//
// }
//
// for(int i=0;i<b.length;i++)
// {
// ab[i+a.length]=b[i];
// }
//
//
// return ab ; //배열 a와 b를 연결한 새로운 배열 리턴
// }
// static void print(int[] a) { System.out.print("[ ");for(int i=0;i<a.length;i++) System.out.print(a[i]+" ");
// System.out.println("]");
// /*배열 a출력*/ }
//
//}
//
//class Main{
// public static void main(String[] args) {
// int [] array1= {1,5,7,9};
// int [] array2= {3,6,-1,100,77};
// int [] array3=ArrayUtil.concat(array1, array2);
// ArrayUtil.print(array3);
// }
//}
//import java.util.*;
//
//class Dictionary{
// private static String [] kor = {"자바","1","2","3","4","5"};
// private static String [] eng = {"java","o","t","th","f","fi"};
// static String kor2Eng(String word) {
// int asd=-1;
// for(int i=0;i<kor.length;i++)
// {
// if((word).equals(kor[i]))
// {
// asd=i;
// break;
//
// }
//
// }
// if(asd==-1)
// {
// return "없습니다";
// }
// else {
// return eng[asd];
// }
//
// } /*검색 코드작성*/
//}
//
//class Main{
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
//
// System.out.println("한영 단어 검색 프로그램입니다.");
// while(true)
// {
// System.out.print("한글 단어?");
// String word=sc.next();
// if(word.equals("그만"))
// {
// break;
// }
//
// System.out.println(word+"은/는 "+Dictionary.kor2Eng(word));
//
//
//
//
//
// }
//
// }
//}
/*
//public > protected > private
import java.util.*;
class Calc{
protected int a; //자신을 상속받은 서브클래스만 접근 가능
int b;
void setValue(int a,int b) {
this.a=a;
this.b=b;
}
int calculate(int a,int b) {
return a+b;
}
}
class Add extends Calc{
int calculate() { //overriding 덮어쓰기 (메소드 재정의)
return a+b;
}
}
class Sub extends Calc{
int calculate() {
return a-b;
}
}
class Mul extends Calc{
int calculate() {
return a*b;
}
}
class Div extends Calc{
int calculate() {
return a/b;
}
}
class Main{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.print("두 정수와 연산자를 입력하시오>>");
int a=sc.nextInt();
int b=sc.nextInt();
String cal=sc.next();
Calc c;
if(cal.equals("+"))
{
c=new Add();
}
else if(cal.equals("-"))
{
c=new Sub();
}
else if(cal.equals("*"))
{
c=new Mul();
}
else if(cal.equals("/"))
{
c=new Div();
}
System.out.println(c.calculate());
}
}
*/
import java.util.*;
class Player{
}
class Game{
}
class Main{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("끝말잇기 게임을 시작합니다...");
System.out.println("게임에 참가하는 인원은 몇명입니까?>>");
int num=sc.nextInt();
}
}