Project Euler
Hi, Naman!

Welcome to Project Euler.

int x = 1,
    prev = 0,
    temp = 0;
for(int i = 0; i < 4; i++) {
    temp = x;
    x += prev;
    prev = temp;
    cout << x << " ";
}

The mathematical code playground. Solve problems.

What is Project Euler?