13041: 右边对齐输出数据

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description

有多组测试数据,每组测试数据输入3个小于1000的正整数,将他们右对齐输出。

Input

有多组测试数据,每组测试数据同一行输入3个小于1000的正整数。

Output

利用单场宽,每行输出一个数据,将3个数依次右对齐输出。

Sample Input Copy

1 12 123
234 2 34

Sample Output Copy

  1
 12
123
234
  2
 34