Source Code:
(back to article)
x = 1 y = 2 result = "Beide sind positiv" if x > 0 and y > 0 else "Einer von ihnen ist nicht positiv"
Result:
Report an issue