#include #include #include #include using namespace std; using ll=long long; using mint=atcoder::modint998244353; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); vectorP(2),Q(2); for(int i=0;i<2;i++)cin>>P[i]; for(int i=0;i<2;i++)cin>>Q[i]; int T; cin>>T; vectordp(T+2); dp[1]=1; vectorq(T+2); q[0]=1; for(int i=1;i<=T+1;i++)q[i]=q[i-1]*Q[0]/Q[1]; for(int i=0;i=1;j--)dp[j]=dp[j-1]; dp[0]=0; } mint ans=0; for(int i=1;i<=T+1;i++){ ans+=dp[i]; } cout<