/*
Code the function below to return the number at the specified location in a fibonacci sequence (0, 1, 1, 2, 3, 5, 8, 13, 21, 34, etc...).
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine(Fibonacci(34) == 5702887 ? "PASSED" : "FAILED");
}
public static int Fibonacci(int n)
throw new NotImplementedException();