Question
Write a program which takes input string and produce an underscore whenever a camelcase is present.
Input --> WeeklyContest
Output --> Weekly_Contest
Input --> NewWeeklyContest
Output --> New_Weekly_Contest
Input --> WEEKLYContest
Output --> WEEKLY_Contest
Input --> WeeklyCONTEST
Output --> Weekly_CONTEST