5558: Four Digits四位数字(ABC222A)

内存限制:1024 MB 时间限制:2.000 S
评测方式:文本比较 命题人:
提交:0 解决:0

题目描述


You are given an integer $N$ between $0$ and $9999$ (inclusive).

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


Constraints:


-   $0 \leq N \leq 9999$


-   $N$ is an integer.

给出一个介于0和9999(包括)之间的整数N。请将其打印为四位数字字符串,如果需要的话,在其前面添加必要数量的前导零。

数据范围:

-   $0 \leq N \leq 9999$
-   $N$ 是一个整数。


输入

N

输出

Print the answer.

样例输入 复制

321

样例输出 复制

0321

提示

来源/分类