Consecutive Primes

아직 제출이 없습니다시간 제한15초메모리 제한1024 MB

문제

Ada has bought a secret present for her friend John. In order to open the present, Ada wants John to crack a secret code. She decides to give him a hint to make things simple for him. She tells him that the secret code is a number that can be formed by taking the product of two consecutive prime numbers, such that it is the largest number that is smaller than or equal to ZZ. Given the value of ZZ, help John to determine the secret code.

Formally, let the order of prime numbers 2, 3, 5, 7, 11, ... be denoted by p_1p\_1, p_2p\_2, p_3p\_3, p_4p\_4, p_5p\_5, ... and so on. Consider R_iR\_i to be the product of two consecutive primes p_ip\_i and p_i+1p\_{i+1}. The secret code is the largest R_jR\_j such that R_jZR\_j \le Z.

입력

The first line of the input gives the number of test cases, TTTT lines follow.

Each line contains a single integer ZZ, representing the number provided by Ada as part of the hint.

출력

For each test case, output one line containing Case #x: y, where xx is the test case number (starting from 1) and yy is the secret code - the largest number less than or equal to ZZ that is the product of two consecutive prime numbers.

제한

  • 1T1001 \le T\le 100.

힌트

For Sample Case #1, the secret code is 2021 because it is exactly the product of consecutive primes 43 and 47.

For Sample Case #2, the secret code is 1763 because the product of 41 and 43 is 1763 which is smaller than 2020, but the product of 43 and 47 exceeds the given value of 2020.