What will be the output of the following program?
class DemoOnOperators{ public static void main(String[] args){ int input = 7; int output = ++input + ++input + ++input; System.out.println(output); } }
-20
109
27
35