PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
import datetime
counter=1
n=999999999999999999;
while counter<=3:
num=int(input("Write a number "))
if num<n:
n=num
counter=counter+1
print("\nThe min is", n)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run