#include <stdio.h> int main () { int a,b,c; a = 1; b = 2; c = 3; printf("%9d %9d %9d\n",a , b ,c); return 0; }