Question

Write a function that star pads a number if it has less than 5 digits?

Login to Submit

Examples

Input is number but output must be string

Input: 123
Output: "**123"

Input: 1
Output: "****1"

Input: 12334
Output: "12334"

Input: 1234567
Output: 1234567