← Back to List
21105번: New Financial Year ↗
Solutions
Python 3
94 B | 94 chars
for _ in range(int(input())): p,c = map(float,input().split()) print(100 * p / (100 + c))