Variabili e operazioni con le stringhe

Finora, abbiamo fatto manipolazioni con valori numerici, ma Python offre molte utilità per gestire anche valori testuali (stringhe).
Possiamo sommare due stringhe, concatenando così i due testi. Possiamo moltiplicare una stringa per un numero n, il che ripeterà quella stringa n volte, e così via.
s1 = 'Hello world!'
s2 = 'My name is Anna'
s3 = s1 + s2
print(s3)       # Hello world!My name is Anna
print(s1 + s2)  # Hello world!My name is Anna
print(s1 * 3)   # Hello world!Hello world!Hello world!
print(s2 + '!') # My name is Anna!

Sfida

Date due stringhe in input, creare una terza chiamata total, che contiene le due stringhe separate da uno spazio, e stampare total nell'output.
Input
Output
Hello My name is Bob
Hello My name is Bob
 

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue