//public class Main {
// private int w, h;
// private char fillChar;
// public Main() {
// this(10, 1);
// }
// public Main (int w, int h) {
// this.w = w;
// this.h = h;
// }
// public void draw() {
// for (int i=0; i<h; i++) {
// for(int j=0; j<w; j++) {
// System.out.print(fillChar);
// }
// System.out.println();
// }
// }
// public void fill(char c) {
// this.fillChar = c;
// }
// public static void main(String[] args) {
// Main a = new Main();
// Main b = new Main(20,3);
// a.fill('*');
// b.fill('%');
// a.draw();
// b.draw();
// }
//}
//import java.util.Scanner;
//class Player {
// private String name;
// public Player(String name) {
// this.name = name;
// }
// public String getName() {
// return name;
// }
//}
//
//public class Main {
// public static void main(String[] args) {
// Scanner scanner = new Scanner(System.in);
// Player [] p = new Player[2];
// for(int i=0; i<p.length; i++) {
// System.out.print("선수 이름 입력>>");
// p[i] = new Player(scanner.next());
// }
// int n=0;
// while(true) {
// System.out.print(p[n].getName() + "씨, <Enter 외 아무키나 치세요>");
// scanner.next();
// int [] val = new int [3];
// for (int i=0; i<val.length;i++) {
// val[i] = (int)(Math.random()*3);
// System.out.print(val[i]+" \t");
// }
// System.out.println();
// if (val[1]==val[2] && val[0] == val[1]) {
// System.out.println(p[n].getName() + " 이 승리하였습니다.");
// break;
// }
// n++;
// n =n%2;
// }
// scanner.close();
// }
//}
//import java.util.*;
//
//class parents {
// int a, b, c;
//
// // method overloading
// void show() {
// System.out.println("IM yor father");
// }
// void show(int k) {
// System.out.println("IM YOUR MOTHER");
// }
//
// int call(int n) {
//
// return 0;
// }
//}
//
//class child extends parents {
// int d, e, f;
//
// // method overriding => redefinition
// void show() {
// System.out.println("IM YOUR SUN");
// }
//
//}
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// parents p = new parents();
// child c = new child();
//
// c.show();
// p.show(10);
// }
//}
//class Point {
// private int x,y;
// public void set(int x, int y) {
// this.x = x;
// this.y = y;
// }
// public void showPoint() {
// System.out.println("(" + x + "," + y + ")");
// }
//}
//
//class ColorPoint extends Point {
// private String color;
// public void setColor(String color) {
// this.color = color;
// }
// public void showColorPoint() {
// System.out.print(color);
// showPoint();
// }
//}
//
//public class Main {
// public static void main(String[] args) {
// Point p = new Point();
// p.set(1,2);
// p.showPoint();
//
// ColorPoint cp = new ColorPoint();
// cp.set(3, 4);
// cp.setColor("red");
// cp.showColorPoint();
// }
//}
/*
class Point {
private int x,y;
public Point() {
this.x = this.y = 0;
}
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public void showPoint() {
System.out.println("(" + x + "," + y + ")");
}
}
class ColorPoint extends Point {
private String color;
public ColorPoint (int x, int y, String color) {
super(x,y);
this.color = color;
}
public void showColorPoint() {
System.out.print(color);
showPoint();
}
}
public class Main {
public static void main(String[] args) {
ColorPoint cp = new ColorPoint(5,6, "blue");
cp.showColorPoint();
}
}
*/
//import java.util.*;
//
//class calculater {
// private int a, b, c;
// public calculater() {
// this(0, 0);
// }
// public calculater(int a, int b) {
// this.a = a;
// this.b = b;
// }
//
// public int sum() {
// System.out.println("CALCU:LA");
// return this.a + this.b;
// }
//}
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// calculater c = new calculater(10, 20);
// System.out.println(c.sum());
//
// }
//}
//import java.util.*;
//
//class parents {
// int a;
// void talk() {
// System.out.println("454544");
// }
//}
//
//class child extends parents {
// void talk() {
// System.out.println("asdjaskjdhaskdjdhaskjdh");
// }
//}
//
//public class Main {
// public static void main(String[] args) {
// // upcasting
//// parents p;
//// child c = new child();
//// c.a = 10;
//// System.out.println("before : " + c.a);
//// p = c;
//// System.out.println("after : " + p.a +" " + c.a);
//
// // downcasting
//
// parents p = new child();
// child c;
//
// p.a = 100;
// c = (child)p;
// System.out.println(p.a + " " + c.a);
//
// }
//}
//class Person {
// String name;
// String id;
//
// public Person(String name) {
// this.name = name;
// }
//}
//
//class Student extends Person {
// String grade;
// String department;
//
// public Student(String name) {
// super(name);
// }
//}
//
//public class Main {
// public static void main(String[] args) {
// Person p;
// Student s = new Student("jkhe");
// p = s;
//
// System.out.println(p.name);
// }
//}
//class Shape {
// public void draw() {
// System.out.println("Shape");
// }
//}
//class Line extends Shape {
// public void draw() {
// System.out.println("Line");
// }
//}
//class Rect extends Shape {
// public void draw() {
// System.out.println("Rect");
// }
//}
//class Circle extends Shape {
// public void draw() {
// System.out.println("Circle");
// }
//}
//
//public class Main {
// static void paint(Shape p) {
// p.draw();
// }
// public static void main(String[] args) {
// Line line = new Line();
// paint(line);
//
// paint(new Shape());
// paint(new Line());
// paint(new Rect());
// paint(new Circle());
// }
//}
abstract class building {
int a, b, c;
abstract int show();
abstract float talk();
int call() {
System.out.println("HI");
return 10;
}
}
interface buildings {
final int a = 10;
int show();
int asdasd();
float asdasdasd();
}
interface electonic {
double k();
void showing();
}
class yourHome implements buildings, electonic {
@Override
public double k() {
// TODO Auto-generated method stub
return 0;
}
@Override
public void showing() {
// TODO Auto-generated method stub
}
@Override
public int show() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int asdasd() {
// TODO Auto-generated method stub
return 0;
}
@Override
public float asdasdasd() {
// TODO Auto-generated method stub
return 0;
}
}
class myHome extends building {
@Override
int show() {
// TODO Auto-generated method stub
return 0;
}
@Override
float talk() {
// TODO Auto-generated method stub
return 0;
}
}
public class Main {
public static void main(String[] args) {
}
}



