//#5
//import java.util.*;
//class Circle{
// private double x,y;
// private int radius;
//
// Circle(double x, double y, int radius){
// x=0;
// y=0;
// radius=0;
// }
// void show() {
// System.out.println("("+x+","+y+")"+radius);
// }
//}
//class Main{
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// Circle c[]=new Circle[3];
// for(int i=0;i<3;i++) {
// System.out.println("x, y, radius >>");
// double x=sc.nextDouble();
// double y=sc.nextDouble();
// int radius=sc.nextInt();
// c[i]=new Circle(x, y, radius);
// }
// for(int i=0;i<c.length;i++) {
// c[i].show();
// }
// }
//}
//#6
//import java.util.*;
//class Circle{
// double x,y;
// int radius;
//
// Circle(double x, double y, int radius){
// x=0;
// y=0;
// radius=0;
// }
// void show() {
// System.out.println("("+x+","+y+")"+radius);
//}
//}
//class Main{
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// Circle c[]=new Circle[3];
// for(int i=0;i<3;i++) {
// System.out.println("x, y, radius >>");
// double x=sc.nextDouble();
// double y=sc.nextDouble();
// int radius=sc.nextInt();
// c[i]=new Circle(x, y, radius);
// }
// for(int i=1;i<c.length;i++) {
// if(c[i].radius>c[i-1].radius)
// c[i].show();
// }
// }
//}
//#7
//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 Main{
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// Day d=new Day();
// System.out.println("이번달 스케쥴 관리 프로그램.");
// while(true) {
// System.out.println("할일(입력:1, 보기:2, 끝내기:3) >>");
// int ans1=sc.nextInt();
// if(ans1==1) {
// System.out.println("날짜(1~30)?");
// int ans2=sc.nextInt();
// System.out.println("할일(빈칸없이입력)?");
// String work=sc.next();
// d.set(work);
// }
// else if(ans1==2) {
// System.out.println("날짜(1~30)?");
// int ans2=sc.nextInt();
// System.out.print(ans2+"일의 할 일은 ");
// d.show();
// }
// else if(ans1==3) {
// System.out.println("프로그램을 종료합니다.");
// break;
// }
// }
// }
//}
//#8
//import java.util.*;
//class Phone{
// String name;
// String tel;
//
// Phone(String n ,String t){
// name=n;
// tel=t;
// }
//
//}
//class Main{
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// System.out.println("인원수>>");
// int a=sc.nextInt();
//
// Phone p[]=new Phone[a];
//
// for(int i=0;i<a;i++) {
// System.out.println("이름과 전화번호(이름과 번호는 빈 칸없이 입력)>>");
// String n=sc.next();
// String t=sc.next();
// p[i]=new Phone(n,t);
// }
// System.out.println("저장되었습니다...");
//
// while(true) {
// System.out.println("검색할 이름>>");
// String b=sc.next();
// if(b=="그만")
// break;
// else {
// for(int i=0;i<a;i++)
// if(b==p[i].name)
// System.out.println(b+"의 번호는 "+p[i].tel+"입니다.");
// else
// System.out.println(b+"이 없습니다.");
// }
//
// }
// }
//}



