class OperatorLevel5 { public static void main(String[] args) { int a = 34; int b = 21; int c = a++ + ++b – a; System.out.println(c); } }
22
20
21
56