Help me in solving FIT problem

My issue

I am not able to code this in python. Please help me with the solution of this problem.

My code

# cook your dish here


Learning course: Basic Math using Python
Problem Link: Practice Problem in - CodeChef

The total distance walked by Chef in a day is X kms + X kms = 2*X kms - considering the return trip.
Total days in a week that Chef has to walk is 5 days.
Hence, the total distance walked for office trips in a week is 2 * X * 5 = 10 * X kms

t=int(input())
for _ in range(t):
    print(10*int(input()))