• + 0 comments
        a = int(input())
        b = int(input())
        
        print (a//b)
        print (a/b)
    

    / Divide a number with another // Divide two numbers & round the answer to nearest integer value