Can that be done with no while loops?
static void Main(string[] args) { Console.WriteLine(\"Please enter a number\"); int number = Convert.ToInt32(C
public static int Fibonatchi(int position) { if(position == 0) { return 1; } if(position == 1) { return 1; } else { return Fibonatchi(position - 2) + Fibonatchi(position - 1); } }