a = "hello"
b = "world"
 
print(a + b)   # concatenation
print(a * 3)   # repetition

output

helloworld
hellohellohello