What will the following Python program print out?
print(min(100, 150, -200,-450))
-450
-200
100
Error