• + 0 comments

    a = int(input()) b = int(input()) intdivision=a//b floatdivision=a/b print(intdivision) print(floatdivision)