class zf extends lines {
  void zf (int line) {
    this.width = this.height = line;
  }
  
  public static void main (String[] args) {
    zf myZf = new zf();
    myZf.zf(5);
    System.out.println(myZf.area());
  }
}