Elif

--Originally published at Python

Code:
x = int(input(“Type an integer bigger than 0: “))
if(x>0):
print(“Good job”)
elif(x==0):
print(“You almost got it”)
elif(x<0):
print(“You’re not very smart, are you?”)

elif