# Arup Guha
# 3/9/2021
# Solution to 2021 UCF HS Contest Problem: Build-a-House

# Get the number of cases.
n = int(input(""))

# Just multiply input by 5!
for i in range(n):
    print(5*int(input("")))

