This commit is contained in:
Kovács Tibor 2022-01-26 14:39:25 +01:00
parent 1448293265
commit 58881320eb

View File

@ -0,0 +1,8 @@
a=int(input("adj meg egy számot! "))
b=int(input("adj meg egy másik számot! "))
if a >b:
print("a nagyobb ertek:",a)
elif b>a:
print("a nagyobb ertek:",b)
else:
print("a 2 szam egyenlo")