fork download
class pk
{
	public static void main(String args[])
	{char ch,ch1;
		ch=88;
		ch1=ch++;
		System.out.println(ch+ " " +ch1);
	}
		
		
	}
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
Y X