Take Multiple Input in one String

 


n=list(map(int,input("Enter number ").split(',')))
print(f'The Sum of Given Number = {sum(n)}')

Comments