#abc222a. [abc222_a]Four Digits

[abc222_a]Four Digits

Problem Statement

You are given an integer NN between 00 and 99999999 (inclusive).

Print it as a four-digit string after appending to it the necessary number of leading zeros.

Constraints

  • 0leqNleq99990 \\leq N \\leq 9999
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.


Sample Input 1

321

Sample Output 1

0321

321321 has three digits, so we need to add one leading zero to it to make it have four digits.


Sample Input 2

7777

Sample Output 2

7777

Sample Input 3

1

Sample Output 3

0001