2921: 格式化输出学号

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:21 Solved:10

Description

某学校学号为 6 位数字,不足 6 位的前面补 0(例如,学号 123 应输出为000123)。编写程序,输入一个整数学号,按上述格式输出。

Input

一个非负整数 id(范围:0 ≤ id ≤ 999999)

Output

6 位数字,不足 6 位时左侧补 0。

Sample Input Copy

456

Sample Output Copy

000456

HINT

学号 id 为非负整数,且不超过 6 位(即最大为 999999)。