hacker rank problem(Python: Division)solution

PYTHON: DIVISION


a = float(input())
b = float(input())
k = int (a/b)
m = float(a/b)
print(k)
print(m)

Compiler Message
Success
Input (stdin)Download
4
3
Expected OutputDownload
1
1.33333333333

Comments

Popular posts from this blog

Amazon Web Services

Google Code-In mentorship experience :)

Hacker Rank all java and python problem solutions