Write a lambda expression that accepts a long value and returns the next even number.
It is guaranteed that the input number is non-negative.
Solution format. Submit your lambda expression in any valid format with ; at the end.
Examples: x -> x; (x) -> x; (x) -> { return x; };