Class Assignment problem giving wrong answer
@Ajitverma1503
Problem with your output format. The number we are supposed to print after the # in the output is not the value of n but rather the testcase number.
Input :
3
5
6
7
Expected Output :
#1 : 2
#2 : 3
#3 : 5
Your Output :
#5 : 13
#6 : 21
#7 : 34
Simply correct this and your code will pass.