Sorry! Posting Assignment is allowed only for commercial accounts.
public class print{ public static void main(String[] args) { short x = 32767; x++; x++; System.out.print(x); } }
int x = 2; int y = 8; while(x<(y+5)) { System.out.println("Hello world!"); x+=2; y-=2; }