write a program to initialize the given data and find the minimum and maximum
Answers
Answered by
1
Answer:
a=list(map(int,input().split())) #List is getting from user
print("max=",max(a)) #Maximum element from the list will be display
print("min=",min(a)) #Minimum element from the list will be display
Explanation:
Similar questions