Help me in solving FIT problem

My issue

how sample inputs and output is shown on screen

My code

#include <bits/stdc++.h>
using namespace std;

int main() {
	int T;
	cin>>T;
	while(T--)
	{
	    int X;
	    cin>>X;
	    cout<<10*X;
	}
	
	return 0;
}

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

@priyanshu654ya
u have to write endl after printing the answer .

Write this statement:
cout<<((2*X)*5)<<endl;
As the chef walks the distance twice so X should be multiplied by 2. And then this multiplied value should be multiplied by 5 as he walks 5 days a week.