SP29363 SORTMUCH - How many can you sort?
Description
**Problem Statement :**
You have invented a new sorting algorithm which can sort n integers in exactly n log3 n time. (which is faster than almost every sorting algorithm till date). You have proved the correctness of your algorithm to your professor.
The professor now asks you what is the maximum number of integers that you can sort in a given time T.
**Note :** log3 = (log to the base 3)
Proper usage of type casting is required to solve this problem. For testing purposes you can use this [high precision calculator](http://keisan.casio.com/calculator).
**Input :**
The first line consists of an integer t. For each test case, you are given an integer T, the time to sort the integers.
**Output :**
For each test case, print the maximum number of integers that you can sort in T time.
**Input Constraints :**
1
Input Format
N/A
Output Format
N/A