suma jakichkolwiek liczb w Pythonie
sum(list(map(int,input().split())))
Famous Finch
sum(list(map(int,input().split())))
def SumNum(mylist):
the_sum = sum(filter(lambda i: isinstance(i, (int, long, float)), mylist))
return the_sum