# Code
s = tuple(map(int, input(‘Enter a sequence of numbers : ‘).split())) # split() splits the input on whitespace, map() is converting the string types to integer types
print(‘Mean of the above tuple is’, sum(s)/len(s)) # sum() gives the sum of any sequence