#include<stdio.h>
void main()
{
int x,y,z;
x=7; y=8; z=9;
printf("%d\n\t%d%d\n%d%d\t \b%d\n",x,y,z,z,y,x);
}