#include #include #include #include using namespace std; int main() { int first = 1, second = 1, third; cout << first << ' ' << second << ' '; do { third = first + second; cout << third << ' '; first = second; second = third; } while (third < 120); }