#include<stdio.h>
void main()
{
int x,y;
y=(x=2*7,x*8,x+17);
printf("x=%d\ny=%d\n",x,y);
}