# Craps Roller
# Demonstrates random number generation

import random

# generate random number 1 - 6
die1 = random.randint(1,6)
die2 = random.randrange(6) + 1

total = die1 + die2

print "You rolled a", die1, "and a", die2, "for a total of", total

if total == 2:
    print "Snake-eyes, you lose!!!!!"
elif total == 12:
    print "Boxcars, you lose!!!!!"
elif (total != 7) and (total != 11):
    print "Your point is", total

raw_input("\n\nPress the enter key to exit.")