print ("happy birthday Luiz!")
name = "string vest" #note that "means a string by default"
boolean = True #could also False
integer = 9
floating = 3.2

print(name)
print("Hello "+ name)
print("Hello " + str(integer))

int(name)
