int main(){
int t;
scanf(“%d”,&t);
while(t–){
int x; //the given distance
scanf(“%d”,&x);
printf(“%d\n”,2x5);
// because he walk home to office & he returns office to home to total distance
//he walk a day is 2x & he go office 5 day a week i.e 2x*5
}
return 0;
}