import math

class Ellips (object):
    def __init__ (self, l, k):
        self.lang = l
        self.kort = k

    def area (self):
        return math.pi * self.lang * self.kort

class Cirkel (Ellips):
    def __init__ (self, r):
        super (Cirkel, self).__init__ (r, r)
