x = 1 #int y = 1.22 #float name = "Billy" #string is_cool = True #boolean #x, y, name, is_cool = (1, 1.22, "Billy", True) print(x, y, name, is_cool)