xxxxxxxxxx
string = input()
try:
num = int(input())
print(string+num)
except (TypeError, ValueError) as e:
print(e)
xxxxxxxxxx
except (IDontLikeYouException, YouAreBeingMeanException) as e:
pass
xxxxxxxxxx
try:
# code that might raise exceptions
pass
except (ExceptionType1, ExceptionType2, ):
# handling multiple exceptions
pass