Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int n, a = 1, b = 1, c, x;
  6. cin >> x;
  7. while(x)
  8. {
  9. a = 1;
  10. b = 1;
  11. while( a + b <= x )
  12. {
  13. c = a + b;
  14. b = a;
  15. a = c;
  16. }
  17. cout << a << " ";
  18. x = x - a;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement