Write a program to calculate the minimum elements of a given list of numbers.
l = eval(input("Enter a list: ")) m = min(l) print("Minimum element in the list:", m)
Enter a list: [1, 4, 65, 34, 23] Minimum element in the list: 1