Difficulty Level: MEDIUM
Problem Statement:
Write a program to print all the LEADERS in the array. An element is a leader if it is greater than all the elements to its right side. And the rightmost element is always a leader.
Input:
arr[] = {16, 17, 4, 3, 5, 2}
Output:
17, 5, 2