#C12207. Square Each Digit
Square Each Digit
Square Each Digit
Given a non-negative integer \(n\), square each of its digits and concatenate the squared results to form a new integer. For instance, if \(n = 9119\), then the squares are \(9^2 = 81\), \(1^2 = 1\), \(1^2 = 1\), and \(9^2 = 81\), which when concatenated gives \(811181\). This problem tests your ability to manipulate numbers and strings effectively.
inputFormat
The input consists of a single non-negative integer provided via standard input (stdin).
outputFormat
The output is a single integer printed to standard output (stdout) that represents the concatenation of the squares of each digit of the input.
## sample9119
811181