Skip to content

Commit d4b06fb

Browse files
authored
Division operation in python
1 parent f0b063a commit d4b06fb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Division.py

+5
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)