2886: 整数对齐输出

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:18 Solved:7

Description

从键盘输入 3 个整数,分别使用 %5d、%10d、%3d 格式输出,观察不同宽度的对齐效果。

Input

输入 3 个整数

Output

输出不同宽度的对齐效果

Sample Input Copy

12 345 6

Sample Output Copy

   12
       345
  6