Что выведет код?

tup = (5, 7, 22, 97)

newtup = tuple(map(lambda x: x + 3, tup))

print(newtup)