#include <iostream>
#include <algorithm>
#include <string.h>
#include <functional>
using namespace std;
struct pl{
char c;//输入一个字符,不用开数组了
float hh;//身高
}a[1111];
int main()
{
int n;
scanf("%d",&n);
float h;//注意类型
for(int i=0;i<n;i++)
{
scanf("%s%f",&a[i].c,&a[i].hh);
if(a[i].c=='F')
{
h=a[i].hh*1.09;
printf("%.2f\n",h);
}
if(a[i].c=='M')
{
h=a[i].hh*1.0/1.09;
printf("%.2f\n",h);
}
}
return 0;
}
//本题注意不同数据的类型,因为类型改了好长时间