public class Ex2_1 { public static void main(String[] args) { int x, y; x = 136; y = 7; System.out.println("\t" + x + " / " + y + " = " + (x/y) + " ‚ ‚Ü‚è " + (x%y)); } }