There was an error while loading. Please reload this page.
1 parent 041e07f commit 6898581Copy full SHA for 6898581
minimum.py
@@ -0,0 +1,7 @@
1
+n1= int(input('First number: '))
2
+n2= int(input('Second number: '))
3
+n3= int(input('Third number: '))
4
+
5
+Lowest = min(n1, n2, n3)
6
7
+print('Lowest number among three numbers is: ', Lowest)
0 commit comments