Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
dividenumber
The first line should contain the result of integer division,  // . The second line should contain the result of float division,  / .
  • Loading branch information
jagriti1024 authored Oct 30, 2020
commit 7cf65434b4a9b8141ec66c9828d8c9ac0cc6d4ed
6 changes: 6 additions & 0 deletions dividenumber
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
a = int(input())
b = int(input())
x=a//b
print(x)
y=a/b
print(y)