We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b063a commit d4b06fbCopy full SHA for d4b06fb
Division.py
@@ -0,0 +1,5 @@
1
+if __name__ == '__main__':
2
+ a = int(input())
3
+ b = int(input())
4
+ print(a//b,end="\n")
5
+ print(float(a/b),end="\n")
0 commit comments