Untitled
Anonymous
python
05/28/2024 5:17 AM
308 B
15
Indexable
if __name__ == '__main__':
a = int(input("Podaj pierwszą liczbę: "))
b = int(input("Podaj drugą liczbę: "))
c = int(input("Podaj trzecią liczbę: "))
wartosc_max = max(a, b, c)
print(wartosc_max)
Editor is loading...
Leave a Comment