The Fibonacci series is defined to be the following numbers: 0,1,1,2,3,5,8,... where each number is the sum of the previous two numbers. Create a pseudo code function using do-while loops and output the first number greater than 100 in the preceding series. No input is required.