Si ou Python
x = 1; y = 1
if x == 1 or y == 1:
print(x, y)
# 1 1
khuDDD
x = 1; y = 1
if x == 1 or y == 1:
print(x, y)
# 1 1
weather = input("How's the weather? ")
if weather == "Good!" or weather == "Great!":
print('Glad to hear!')
else:
print('Too bad!')
a = 200
b = 33
if b > a:
print("b is greater than a")
elif a == b:
print("a and b are equal")
else:
print("a is greater than b")