There was an error while loading. Please reload this page.
1 parent f52cf88 commit 041e07fCopy full SHA for 041e07f
maximum.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
+Maximum = max(n1, n2, n3)
6
7
+print('Highest number among three numbers is: ', Maximum)
0 commit comments