//
//import java.util.*;
//
//class parents {
// int a, b, c;
//
// parents() {
// System.out.println("Init parents 1");
// }
// parents(int a, int b, int c) {
// this.a = a;
// System.out.println("Init parents 2");
// }
//
// void talk() {
// System.out.println("Im your father");
// }
//}
//
//class children extends parents {
// children() {
// System.out.println("Init done children");
// }
// void talk() {
// System.out.println("Im your sun");
// }
// // method overriding
//
// // method overloading
//
//}
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// parents p = new children();
// children c = new children();
//
// p.talk();
// c.talk();
// p.a = 999;p.b=888;p.c=777;
// System.out.println(c.a +" "+c.b +" "+c.c);
// System.out.println(p.a +" "+p.b +" "+p.c);
//
// c = (children)p;
// System.out.println(c.a +" "+c.b +" "+c.c);
// System.out.println(p.a +" "+p.b +" "+p.c);
// //
// }
//}
//class cake {
// private String x;
// public void set(String x)
// {
// this.x=x;
// }
// public void cake()
// {
// System.out.println(x);
// }
//}
//
//class cream extends cake
//{
// private String flavor;
// public void setflavor(String flavor)
// {
// this.flavor=flavor;
// }
// public void cakeflavor()
// {
// System.out.print(flavor);
// cake();
// }
//}
//public class Main
//{
// public static void main(String[] args)
// {
// cake c = new cake();
// c.set("rice");
// c.cake();
//
// cream cc = new cream();
// cc.set("cake");
// cc.setflavor("cheese");
// cc.cakeflavor();
// }
//}
//class body
//{
// private int wingspan;
// int jump;
// protected int strength;
// public String name;
//
// public void setwingspan(int wingspan)
// {
// this.wingspan=wingspan;
// }
// public int getwingspan()
// {
// return wingspan;
// }
//}
//class person extends body
//{
// public void set()
// {
// jump=30;
// name="Kimmy";
// strength=50;
// setwingspan(6);
// System.out.println(name+","+jump+"ft "+strength+"kg "+getwingspan()+"ft ");
// }
//}
//public class Main
//{
// public static void main(String[] args)
// {
// person p = new person();
// p.set();
// }
//}
//class Point
//{
// private int x, y;
// public Point()
// {
// this.x=0;
// this.y=0;
// }
// public Point(int x, int y)
// {
// this.x=x;
// this.y=y;
// }
// public void showPoint()
// {
// System.out.println("("+ x + y + ")");
// }
//}
//class NextPoint extends Point
//{
// private String color;
// public NextPoint(int x, int y, String color)
// {
// super(x, y);
// this.color=color;
// }
// public void showNextPoint()
// {
// System.out.print(color);
// showPoint();
// }
//}
//public class Main
//{
// public static void main(String[] args)
// {
// NextPoint NP = new NextPoint(1, 5, "purple");
// NP.showNextPoint();
// }
//}
//class Shape
//{
// public Shape next;
// public Shape()
// {
// next=null;
// }
// public void draw()
// {
// System.out.println("Shape");
// }
//}
//class Line extends Shape
//{
// public void draw()
// {
// System.out.println("Line");
// }
//}
//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(new Shape());
// paint(new Line());
// paint(new Circle());
//
// }
//}
//class North
//{
// protected int fire()
// {
// return 1;
// }
//}
//class South extends North
//{
// protected int fire()
// {
// return 10;
// }
//}
//public class Main
//{
// public static void main(String[] args)
// {
// North gun;
// gun = new North();
// System.out.println(gun.fire());
//
// gun = new South();
// System.out.println(gun.fire());
// }
//}
class TV
{
private int size;
TV() {
}
TV(int size)
{
this.size=size;
}
protected int getsize()
{
return size;
}
}
class ColorTV extends TV
{
int color;
ColorTV() {
}
ColorTV(int size, int color) {
}
public void printproperty()
{
System.out.println(getsize() + "인치" + color + "컬러");
}
}
public class Main
{
public static void main(String[] args)
{
ColorTV myTV = new ColorTV(32, 1024);
myTV.printproperty();
}
}