# -*- coding: utf-8 -*-

x1 = float(input("Erste Zahl: "))
x2 = float(input("Zweite Zahl: "))
x3 = float(input("Dritte Zahl: "))
x4 = float(input("Vierte Zahl: "))

m = (x1 + x2 + x3 + x4) / 4.0

print("Der Mittelwert ist " + str(m) + ".")