r = 1000
w = 3222
if r > w:
#This code will not run due to improper indentation
print("White balls are out of stock")
else:
#Fix the error by putting a space before both print
print("Your order is Confirmed")
r = 1000
w = 3222
if r > w:
#Correct indentation added
print("White balls are out of stock")
else:
#Correct indentation added
print("Your order is Confirmed")