#include
using namespace std;
int main() {
int n;
cin>>n;
int i,j,f1,f2,f3,f;
f1=0;
f2=1;
f3=1;
cout<<f1<<endl;
cout<<f2<<" β<<f3<<endl;
for(i=2;i<n;i++){
for(j=0;j<=i;j++){
f=f2+f3;
cout<<f<<β ";
f2=f3;
f3=f;
}
cout<<endl;
}
return 0;
}
This code pass only two test cases not all test cases.