Company: Ernst and young_18oct
Difficulty: medium
Panel Changes Problem Description In the provided code snippet, implement the provided panelChanges(...) method using the variables to print the output. You can write your code in the space that follows the phrase 'WRITE YOUR LOGIC HERE'. There will be multiple test cases running, so the Input and Output should match exactly as provided. The base output variable K is set to a default value of -404, which can be modified. Additionally, you can add or remove these output variables. #include <stdio.h> int PanelChanges(int N) { //this is default OUTPUT. You can change it. int K = -404; //write your Logic here: return K; } int main(void) { //INPUT [uncomment & modify if required] int N; scanf("%d", &N); //OUTPUT [uncomment & modify if required] printf("%d",PanelChanges(N)); return 0; } Input Format The first line contains an integer N denoting the final number on the panel. Output Format The output contains an integer K, denoting the number of panel changes. Examples Examp