• + 2 comments

    Here is Python 3 solution from my HackerrankPractice repository:

    a, b = int(input()), int(input())
    print(a // b, a / b, sep='\n')
    

    Feel free to ask if you have any questions :)