# include<iostream> using namespace std; int main(){ int y=1,x=0,c=0; for(int i=1;i<=8;i++){ c=x+c; x=y; y=c; } cout<<y<<" "<<x<<" "<<c; return 0; }