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.
2 parents 0dee783 + bddea45 commit eb01d0fCopy full SHA for eb01d0f
Code/max2.py
@@ -0,0 +1,9 @@
1
+#Program to find maximum of 2 numbers
2
+while 1:
3
+ n,m=map(int, raw_input())
4
+ k = max(m,n)
5
+ print k
6
+ print "Do you want to continue(yes/no): "
7
+ s=raw_input()
8
+ if s=="no":
9
+ break
0 commit comments