using System; Public class Exe1 { Public static void Main () { Int x,y,z; bool s; x=y=z=0; S=x++!=0 || ++y!=0 && ++y!=0 ; Console.WriteLine(“x={0},y={1},z={2},s={3}”, x,y,z,s); Console.Read(); } }