# print the statement print "I will now count my chickens:" # Print the statement and then adds the sum of the forumla after print "Hens", 25 + 30 / 6 print "Roosters", 100 - 25 * 3 % 4 # Another print statement print "Now I will count the eggs:" # Will output the total of the math problem. print 3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6 # Ask the question. print "Is it true that 3 + 2 < 5 - 7?" # Do the problem. With the > < >= etc it will generate true or false statements. print 3 + 2 < 5 - 7 # Do the math (with a print first) print "What is 3 + 2?", 3 + 2 print "What is 5 - 7?", 5 - 7 print "Oh, that is why it is false." print "How about some more." # Just some other examples of true false statements. print "Is it greater?", 5 > -2 print "Is it greater or equal?", 5 >= -2 print "Is it less or equal?", 5 <= -2