a,b,c = map(int,input().split())
print(a,'%8d'%b,'%8d'%c,sep='')
采用格式化输出的方式,用%8d表示占用8个字符,
默认是靠右对齐的,想要靠左最齐只需在前面加 ' - ',%-8d