public class Solution {
    public int Fibonacci(int n) {
        int f1 = 1,f2 = 1;
        for(int i = 3; i <= n; i++){
            int t = f1 + f2;
            f1 = f2;
            f2 = t;
        }
        return f2;
    }
}