https://online.codingblocks.com/app/player/106930/content/96853/4779/code-challenge
#include
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n;
cin>>n;
unsigned long long f=0,s=1,t=1;
cout<<f<<"\n";
cout<<s<<"\t"<<t<<"\n";
for(int i=2;i<n;i++){
for(int j=0;j<=i;j++){
f=s;
s=t;
t=f+s;
cout<<t<<"\t";
}
cout<<"\n";
}
return 0;
}
My code is not passing one test case, what’s the problem?