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