I wrote a little programm in python which has to give the biggest nummber of 2 inputs. The code is following:
a = input("insert a")
b = input("insert b")
if a < b:
print(b)
else:
print(a)
the problem is, this Code works with some numbers but not with all. Foe example if i insert a=5 and b=10 or b=5 and a=10 it would always give me 5 back, even 10 is bigger than 5. I dont know if the problem is from my Code or its a bug in Pycharm beacaue i tried it in Pycharm in visual Studi Code and it gave me the same result and i dont understand why. If somone can explain this to me, i would be very grateful