//import java.util.*;
//
//class stack
//{
// int stack;
// String[] s = new String[200];
//
// int top=-1;
// public void push(String a)
// {
// s[++top]=a;
// top++;
// if(top>=199)
// {
// return;
// }
// }
// public String pop()
// {
// if(s[top]=="")
// {
// System.out.println("비었습니다");
// }
// top--;
// return s[top];
//
// }
// public void view()
// {
// System.out.println(s[top]);
// }
//}
//class change extends stack
//{
// public void push(int a)
// {
// s[++top]=a+"";
// if(top>=199)
// {
// return;
// }
// }
// public void push(double a)
// {
// s[++top]=a+"";
// if(top>=199)
// {
// return;
// }
// }
//}
//public class Main
//{
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int b;
// int n;
//
// int c;
// double d;
// String e;
//
// stack s = new stack();
// change ch = new change();
//
// System.out.println("pop(1) push(2) view(3) finish(4)");
//
// n = t.nextInt();
//
// while(n!=4)
// {
// if(n==2)
// {
// System.out.println("어떤 타입으로? \n int(1) double(2) char(3)");
// b = t.nextInt();
// System.out.println("숫자를 고르시오");
// if(b==1)
// {
// c = t.nextInt();
// ch.push(c);
// }
// else if(b==2)
// {
// d =t.nextDouble();
// ch.push(d);
// }
// else
// {
// e = t.next();
// s.push(e);
// }
// }
// else if(n==1)
// {
// s.pop();
// }
// else if(n==3)
// {
// s.view();
// }
// System.out.println("pop(1) push(2) view(3) finish(4)");
// n = t.nextInt();
// }
// }
//}
//
//import java.util.*;
//
//abstract class stackBase {
// int stack[];
// int top;
// int size;
// abstract void push(int k);
// abstract void pop();
// abstract void view();
//}
//
//class normalStack extends stackBase{
// normalStack() {
// size = 5;
// stack = new int[size];
// }
// @Override
// void push(int k) {
// // TODO Auto-generated method stub
// if(top == size) {
// System.out.println("stack is full");
// }
// stack[top++] = k;
// }
// @Override
// void pop() {
// // TODO Auto-generated method stub
//
// }
// @Override
// void view() {
// // TODO Auto-generated method stub
//
// }
//
//}
//
//class complexStack extends stackBase {
// String cStack[];
// public complexStack() {
// size = 5;
// cStack = new String[size];
// // TODO Auto-generated constructor stub
// }
// @Override
// void push(int k) {
// // TODO Auto-generated method stub
// if(top==size) {
// System.out.println("stack is full");
// }
// cStack[top++] = k+"";
// }
// void push(double k) {
// if(top==size) {
// System.out.println("stack is full");
// }
// cStack[top++] = k+"";
// }
// void push(String k) {
// if(top==size) {
// System.out.println("stack is full");
// }
// cStack[top++] = k+"";
// }
//
// @Override
// void pop() {
// // TODO Auto-generated method stub
// if(top==0) {
// System.out.println("Stack is Empty");
// }
// top--;
// String data = cStack[top];
//
// if(data.contains(".")) {
// System.out.println("data type is double");
// double v = Double.parseDouble(data);
// System.out.println("data is "+v);
// }
// else {
// try {
// int v = Integer.parseInt(data);
// System.out.println(v);
// }catch (Exception e) {
// System.out.println("Data type is String");
// return;
// }
// System.out.println("Data type is Integer");
// System.out.println();
// }
// }
//
// @Override
// void view() {
// // TODO Auto-generated method stub
// for(int i=0; i <size; i++) {
// System.out.println(cStack[i]);
// }
// }
//
//}
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// complexStack cs = new complexStack();
// //cs.push(10);
// cs.push(10.5);
// cs.push("HELL");
// cs.push("WORLD");
// cs.push(1234);
//
// cs.view();
//
// cs.pop();
// }
//}
////
//import java.util.*;
//interface stats
//{
// void defense(int n);
// void offense(int n);
// void jump(int n);
//}
//interface players
//{
// void look();
// void finish();
//}
//class NBA implements stats, players
//{
//
// @Override
// public void look() {
// // TODO Auto-generated method stub
//
// }
// @Override
// public void finish() {
// // TODO Auto-generated method stub
//
// }
//
// @Override
// public void defense(int n) {
// // TODO Auto-generated method stub
//
//
// }
//
// @Override
// public void offense(int n) {
// // TODO Auto-generated method stub
//
//
// }
//
// @Override
// public void jump(int n) {
// // TODO Auto-generated method stub
//
// }
//
//}
//public class Main
//{
// public static void main(String[] args) {
// System.out.println();
// Scanner t = new Scanner(System.in);
// String p[] = new String[30];
// int n = t.nextInt();
// for(int i=0; i<n; i++)
// {
// p[i]=t.next();
//
// }
// }
//}
import java.util.*;
interface humanInformation {
final int eyeCnt = 2;
final int handCnt = 2;
void talk();
}
abstract class humanInfor2 {
double height, weight;
String name;
double getHeight() {
return height;
}
double getWeight()
{
return weight;
}
abstract void setHeight();
abstract void setWeight();
}
class human extends humanInfor2 implements humanInformation {
@Override
public void setHeight() {
// TODO Auto-generated method stub
height = (double)(Math.random()*30+150);
}
@Override
public void talk() {
// TODO Auto-generated method stub
}
@Override
void setWeight() {
// TODO Auto-generated method stub
weight = (double)(Math.random()*100);
}
}
abstract class stuInfor {
}
class highS extends stuInfor {
}
class abcHighClassroom {
human[] h;
highS[] hs;
abcHighClassroom() {
h = new human[30];
hs = new highS[30];
for(int i=0; i<h.length; i++) {
h[i] = new human();
setHeight(h[i]);
}
}
}
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
abcHighClassroom ah = new abcHighClassroom();
}
}