import time
Zahl_1= input("Please give first number:")
op=     input("Which operation would you like to do?(+,-,/,*)")
Zahl_2= input("Please give second number:")

Zahl_1=int(Zahl_1)
Zahl_2=int(Zahl_2)

if(op=="+"):
    print("Your Operation=", Zahl_1, "+", Zahl_2)
    print("Result:=", Zahl_1+ Zahl_2)
    time.sleep(5)

elif(op=="-"):
    print("Your Operation=", Zahl_1, "-", Zahl_2)
    print("Result=", Zahl_1- Zahl_2)
    time.sleep(5)


elif(op=="/"):
    print("Your Operation=", Zahl_1, "/", Zahl_2)
    print("Result=", Zahl_1/ Zahl_2)
    time.sleep(5)

elif(op=="*"):
    print("Your Operation=", Zahl_1, "*", Zahl_2)
    print("Result=", Zahl_1*Zahl_2)
    time.sleep(5)

else:
    print("Please check your inputs and try it again!")
    time.sleep(5)