Compare commits

..

No commits in common. "4c157b5b28bc1df138c9847d4ef74d875fa75b3a" and "7bfe1a3cdc7a056cf90e5263ff6a16c1005456c5" have entirely different histories.

View file

@ -1,14 +0,0 @@
a = int(input("Zadej prvni cislo"))
b = int(input("Zadej druhe cislo"))
operator = input("Zadej operátor")
if operator == '+':
print("Součet je", a + b)
elif operator == '-':
print("Rozdíl je", a - b)
elif operator == '*':
print("Součin je", a * b)
elif operator == '/':
print("Podíl je", a // b)
else:
print("Tento operátor neznám")