PROBLEM STATEMENT You enjoy working with numbers that contain only square digits (namely, 0, 1, 4 and 9). The sequence containing only these digits is 0, 1, 4, 9, 10, 11, 14... Return the n-th term (indexed from 0) in this sequence. DEFINITION Class:SquareDigitNumbers Method:getNumber Parameters:int Returns:int Method signature:int getNumber(int n) CONSTRAINTS -n will be between 0 and 1000, inclusive. EXAMPLES 0) 0 Returns: 0 The first square digit number is 0. 1) 5 Returns: 11 2) 16 Returns: 100 3) 121 Returns: 1941 4) 123 Returns: 1949 This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2010, TopCoder, Inc. All rights reserved.