#doesnt allow to add integer with string this states that 2 strings can only be added
name = 'sermon'
age = 20
print('hello my name us '+ name + 'and my age is ' + str(age)) #it will give error cause of string concatination here we did type converstion