#include<stdio.h>
int x, y=x, z=y;
void main()
{
 if ( x < y && y < z )
    printf( "x is less than z" );
 else if (x > z)
    prinf("x is greater than z");
 else
    prinf("%d %d", x,z);
}