fork(80) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x=2,y=5,z=((x|y +x++)>=9) ? x|y : ++x +2 ;
  8. Console.Write("{0} {1} {2} {3}\n",x,y,z,2|5);
  9. x=2; y=5; z=(x|y+x++);
  10. Console.Write("{0} {1}",x,z);
  11. }
  12. }
Success #stdin #stdout 0.04s 24168KB
stdin
Standard input is empty
stdout
4 5 6 7
3 7