write the program in python
(a) Write a program to solve the Fibonacci sequence using recursion;
(b) Armstrong number is a number that is equal to the sum of its digits raised to the power of the number of digits. Some Armstrong numbers are: 0_ 1,2,3, 153, 1634 etc. Example: 7 = 74] 371 =343 + 743 + 1^3 i) Write a program that will take a number as input and check whether it is an Armstrong number or not ii) Write a program that will start from 0 and identify all the Armstrong numbers up to 9999