Help me in solving CONF2 problem

My issue

i cant do this

My code

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")


Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

@de1sen
U have to do it like this.

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")

This post was flagged by the community and is temporarily hidden.

correct way ,

r = 1000
w = 3222
if r > w:
    print(“White balls are out of stock”)
else:
    print(“Your order is Confirmed”)