# ***************************************
# Hi I'm a happy comment
# In this program the computer guesses
# a number between 1 and 3
# ***************************************

import random


print("welcome to guessing game death match")
again = 'y'
while again =='y':
    print("I am picking a number between 1 and 3")

    number = int(random.random()*3+1)
    guess=-1
    
    while not(guess == number):
         guess = int(input("what did I pick?"))
         if guess == number:
             print("awesome dude")
         if guess > number:
             print("you guessed too high, sucker")
         if guess < number:
             print("you guessed too low, freak")

    again = input("wanna play again? (y/n)")

print("thanks for playing, you're my hero")
