# *************************************
# Your name
# date
# file: input-output
#
# This program demonstrates basic input output operations
#***************************************


# first let's get some input from the user

name=input("What's your name dude? ")#I'm a happy in-line comment
fav_color=input("What's your favorite color? ")
fav_number=int(input("What's your favorite number? "))
fav_float=float(input("And like, what's your favorite non-integral number?"))

# now let's print what we have learned


print("What's up, ",name,"?")
print(fav_color, " is an awesome color!")
print("I hate the number ",fav_number,".")
print("What's so special about ",fav_float,"?")

# even better use outpout formatting
print()
print('Now using the format method')
print ("What's so special about {:.2f} and another {:.3f}?".format(fav_float,4.56789))
