for zahl in [1, 2, 3, 4, 5]:
    quadrat = zahl ** 2
    print("Das Quadrat von", zahl, "ist", quadrat)
