Given two integers a and b on separate input lines, you need to print two results: a // b (integer division, also called floor division)
a / b (float division, also called true division) For example, if a = 7 and b = 3: Integer division: 7 // 3 = 2 (the whole number part, discarding the remainder) Float division: 7 / 3 = 2.333... (the precise decimal result) The order matters for the submission. Print integer division result first, then float division result. Each value on its own line.