BC19 牛牛的对齐

思路:

step1:输入,并用空格分隔;
step2:格式化输出;

代码如下:

n = input().split()
print('{}       {}       {}'.format(n[0],n[1],n[2]))