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