summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/consider-ternary-expression/bad.py
blob: 126b92b0ed413d3cd0fe6394b8195773bf074a5b (plain)
1
2
3
4
5
x, y = input(), input()
if x >= y:  # [consider-ternary-expression]
    maximum = x
else:
    maximum = y