# Python: eks2-3-1.py
# Undersøg om tallet er 1

tal = int(input("Tast et tal "))

if tal==1:
    print("Du har tastet 1")
print("slut")
