fork download
  1. class pk
  2. {
  3. public static void main(String args[])
  4. {char ch,ch1;
  5. ch=88;
  6. ch1=ch++;
  7. System.out.println(ch+ " " +ch1);
  8. }
  9.  
  10.  
  11. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
Y X