radius = float(input("Bitte Radius eingeben: "))
pi = 3.14
flaeche = radius * radius * pi
print("Der Inhalt der Kreisfläche beträgt:", flaeche)