We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 863927a commit 792430dCopy full SHA for 792430d
maximum.py
@@ -1,7 +1,8 @@
1
+#take input from user
2
n1= int(input('First number: '))
3
n2= int(input('Second number: '))
4
n3= int(input('Third number: '))
5
-Maximum = max(n1, n2, n3)
6
+Maximum = max(n1, n2, n3) #Calculate the highest number
7
-print('Highest number among three numbers is: ', Maximum)
8
+print('Highest number among three numbers is: ', Maximum) #Print the number
0 commit comments