import time
print("")
print("<<< Computer_ver1.0 >>>")
time.sleep(1)
a = int(input("Please, enter A: "))
b = int(input("Please, enter B: "))
print("Now I will count, let me think...")
time.sleep(1)
print(".")
time.sleep(1)
print(".")
time.sleep(1)
print("Umm... hard one... this... plus this... hmmm...")
time.sleep(1)
print(".")
time.sleep(1)
print("Sorry just a lil more time plz >_<")
time.sleep(1)
print(".")
time.sleep(1)
print(".")
time.sleep(2)
print("Here it goes!")
print("The součet is: ", a+b)
print("The rozdíl is: ", a-b)
print("The součin is: ", a*b)
print(" Phew! >.<")
print("")

