a = float(input()) b = float(input()) if b == 0: print("除零错误") else: c =a/b y=round(c,2) print("{}".format(y))