/* $begin foo5 */
/* foo5.c */ 
#include <stdio.h>
void f(void);

int y = 15212; 
int x = 15213; 
 
int main()  
{ 
    f(); 
    printf("x = 0x%x y = 0x%x\n",  x, y); 
    return 0;
} 
/* $end foo5 */
 
