1. Write a program that uses a loop to calculate the first eight values {1, 1, 2, 3, 5, 8, 13, 21} in the Fibonacci number sequence. You can assume the first two Fibonacci numbers are 1 and 1, and each remaining number is the sum of the previous two. Place each value in the EAX register and display it in binary, decimal and hexadecimal formats.
2. Write a program that reads in ten decimal integers (between 20 and 99) from the
standard input and stores them in an array. You can assume that the inputs will be within the proper range. The program should then display each integer on a different line and in a different colour, in hexadecimal notation.