# print statement using the + character first_name = "Bing " last_name = "Chandler " age =25 print("The full name of the Employee is " +last_name + first_name +" and the age is "+str(age))