//import java.util.*;
//interface humanInformation {
// final int eyeCnt = 2;
// final int handCnt = 2;
// void talk();
//}
//abstract class humanInfor2 {
// double height, weight;
// double getHeight() {
// return height;
// }
// double getWeight() {
// return weight;
// }
// abstract void setHeight();
// abstract void setWeight();
//
//}
//class human extends humanInfor2 implements humanInformation {
//
// public void setHeight() {
// height = (double)(Math.random()*40+150);
// }
// @Override
// void setWeight() {
// weight = (double)(Math.random()*40+60);
// }
// @Override
// public void talk() {
// // TODO Auto-generated method stub
//
// }
//
//}
//abstract class stuInfor {
//}
//class highS extends stuInfor {
//}
//class abcHighClassroom {
// human[] h;
// highS[] hs;
//
// public void abcHighClassroom(int n) {
//
// h = new human[50];
// hs = new highS[30];
//
// for(int i=0; i<n; i++)
// {
// h[i] = new human();
//
// h[i].setHeight();
// h[i].setWeight();
// }
// }
// public void max(int n, int k, int p)
// {
//
// human temp;
// for(int i=1; i<n; i++)
// {
// for(int j=0; j<n-i; j++)
// {
// if(k==1)
// {
// if(h[j].getHeight()<h[j+1].getHeight())
// {
// temp = h[j];
// h[j] = h[j+1];
// h[j+1] = temp;
// }
// }
// else
// {
// if(h[j].getWeight()<h[j+1].getWeight())
// {
// temp = h[j];
// h[j] = h[j+1];
// h[j+1] = temp;
// }
// }
// }
// }
// if(k==1)
// {
// for(int i=0; i<p; i++)
// System.out.println(h[i].getHeight());
// }
// else
// {
// for(int i=0; i<p; i++)
// System.out.println(h[i].getWeight());
// }
// }
//}
//public class Main {
//
// public static void main(String[] args) {
//
// Scanner t = new Scanner(System.in);
// abcHighClassroom ah = new abcHighClassroom();
// int g=1;
// while(g==1)
// {
// System.out.println("학생 몇명을 조사하겠습니까?(최대 50명)");
// int n = t.nextInt();
// ah.abcHighClassroom(n);
// System.out.println("무엇을 구할라 하십니까?");
// System.out.println("키(1), 몸무게(2)");
// int k = t.nextInt();
// System.out.println("최대 몇명까지 구하시겟습니까?");
// int p = t.nextInt();
// ah.max(n, k, p);
// System.out.println("계속 하시겠습니까?");
// System.out.println("예(1), 아니요(2)");
// g = t.nextInt();
// }
// System.out.println("종료 합니다");
// }
//
//}
//public class Main
//{
// public static void main(String[] args)
// {
// String a = new String(" C#");
// String b = new String(", C++ ");
// System.out.println(a + "의 길이는 " + a.length());
// System.out.println(a.contains("#"));
// a = a.concat(b);
// System.out.println(a);
// a = a.trim();
// System.out.println(a);
// a= a.replace("C#", "JAVA");
// String s[] = a.split(",");
// for(int i=0; i<s.length; i++)
// {
// System.out.println("분리된 문자열"+ i + ": " + s[i]);
// }
// char c = a.charAt(2);
// System.out.println(c);
// }
//}
//public class Main
//{
// public static void main(String[] args)
// {
// StringBuffer m = new StringBuffer("Hello");
// m.append(" Kimmyjaesung");
// System.out.println(m);
// m.insert(6, "are you ");
// System.out.println(m);
// m.replace(6, 13, ", so you are");
// System.out.println(m);
// m.delete(18, 31);
// System.out.println(m);
// m.insert(18, " Aiden Kim");
// System.out.println(m);
// }
//}
//public class Main
//{
// public static void main(String[] args)
// {
// String a = new String("I love you");
// for(int i=0; i<a.length(); i++)
// {
// char c = a.charAt(0);
// a=a.substring(1);
// a= a.concat(String.valueOf(c));
// System.out.println(a);
//
// }
// }
//}