#print "can you see this?"

#text = "hi"
#print text

#print "hi" #This is a note
#print "hi"

myvariable = "dog" #makes myvariable a variable that represents dog
if myvariable == "dog": #It is saying "If myvariable is equal to "dog"
	print "dog is dog" #Then print "dog is dog""
elif myvariable != "dog": #"If myvariable is not equal to "dog"
	print "Dog is not dog" #Then print "dog is not dog""
	
x = 5
y = 1
z = 3
myequation = x-y
if myequation == z:
	print "three"
elif myequation != z:
	print "Not Sure"