int x = 10; int y = 5; x *= y; System.out.println(x);
int a = 5; int b = 10; int c = a + b; c += 5; System.out.println(c);
0 Comments