#include using namespace std; #define overload4(a, b, c, d, e, ...) e #define rep1(a) for(decltype(a) i = 0, i##_len = (a); i < i##_len; ++i) #define rep2(i, a) for(decltype(a) i = 0, i##_len = (a); i < i##_len; ++i) #define rep3(i, a, b) for(decltype(b) i = (a), i##_len = (b); i < i##_len; ++i) #define rep4(i, a, b, c) for(decltype(b) i = (a), i##_len = (b); i < i##_len; i += (c)) #define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__) #define rrep1(a) for(decltype(a) i = (a); i--;) #define rrep2(i, a) for(decltype(a) i = (a); i--;) #define rrep3(i, a, b) for(decltype(a) i = (b), i##_len = (a); i-- > i##_len;) #define rrep4(i, a, b, c) for(decltype(a) i = (a)+((b)-(a)-1)/(c)*(c), i##_len = (a); i >= i##_len; i -= c) #define rrep(...) overload4(__VA_ARGS__, rrep4, rrep3, rrep2, rrep1)(__VA_ARGS__) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define sz(x) ((int)(x).size()) #define yes(s) cout << ((s)?"Yes":"No") << "\n"; #define bit(n) (1LL << ((int)(n))) #define get1bit(x,n) (((x) >> (int)(n)) & 1) #ifdef __LOCAL #define dump(...) cerr << " " << string(#__VA_ARGS__) << ": " << "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]" << endl << " ", dump_func(__VA_ARGS__) #else #define dump(...) #endif using ll = long long; using ld = long double; template using V = vector; template using VV = vector>; template using PQ = priority_queue,greater>; template ostream &operator<<(ostream &os, const vector& vec) {if (vec.empty()) return os << "{}";stringstream ss;os << "{";for (auto e : vec) ss << "," << e;os << ss.str().substr(1) << "}";return os;} void dump_func(){cerr << endl;} template void dump_func(Head &&head, Tail &&...tail){cerr << head;if (sizeof...(Tail) > 0) cerr << ", ";dump_func(std::move(tail)...);} template istream &operator>>(istream& is, complex& v) {T x, y; is >> x >> y; v.real(x); v.imag(y); return is;} template istream &operator>>(istream& is, V& v) {for (auto&& e : v) is >> e;return is;} template istream &operator>>(istream& is, pair& v) {is >> v.first >> v.second;return is;} template istream &operator>>(istream& is, array& v) {for (auto&& e : v) is >> e;return is;} template void print_rest() {cout << "\n";} template void print_rest(const T& first, const A&... rest) {cout << " " << first; print_rest(rest...);} template void print(const T& first, const A&... rest) {cout << fixed << setprecision(16) << first; print_rest(rest...);} template void printx(const T& first, const A&... rest) {cout << fixed << setprecision(16) << first; print_rest(rest...); exit(0);} template inline string join(const T& v, string sep = " ") {if (v.size() == 0) return "" ;stringstream ss;for (auto&& e : v) ss << sep << e;return ss.str().substr(1);} template V make_vec(size_t n, T a) {return V(n, a);} template auto make_vec(size_t n, Ts... ts) {return V(n, make_vec(ts...));} template inline bool chmax(T& a, T b) {if (a < b) {a = b; return 1;} return 0;} template inline bool chmin(T& a, T b) {if (a > b) {a = b; return 1;} return 0;} template inline int lower_index(V&a , T x) {return distance(a.begin(), lower_bound(all(a), x));} template inline int upper_index(V&a , T x) {return distance(a.begin(), upper_bound(all(a), x));} template pair binarysearch(T ng, T ok, T eps, F f, bool sign = false) {while(abs(ng-ok)>eps) {auto mid=ng+(ok-ng)/2;if(sign^f(mid)){ok = mid;}else{ng = mid;}}return {ng,ok};} template constexpr T cdiv(T x, T y) {return (x+y-1)/y;} template constexpr bool between(T a, T x, T b) {return (a <= x && x < b);} template constexpr T pos1d(T y, T x, T h, T w) {assert(between(T(0),y,h));assert(between(T(0),x,w));return y*w + x;} template constexpr pair pos2d(T p, T h, T w) {T y = p/w, x = p - y*w;assert(between(T(0),y,h));assert(between(T(0),x,w));return {y, x};} constexpr ll modpow(ll x, ll n, ll m = 1152921504606846976LL) {ll ret = 1;for(;n>0;x=(__int128)x*x%m,n>>=1) if(n&1)ret=(__int128)ret*x%m;return ret;} constexpr int INF = (1 << 30) - 1; constexpr ll INFL = 1LL << 60; const ll MOD = 998244353; struct mint { ll x; mint(ll x=0):x((x%MOD+MOD)%MOD){} mint operator-() const { return mint(-x);} mint& operator+=(const mint a) { if ((x += a.x) >= MOD) x -= MOD; return *this; } mint& operator-=(const mint a) { if ((x += MOD-a.x) >= MOD) x -= MOD; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= MOD; return *this;} mint operator+(const mint a) const { return mint(*this) += a;} mint operator-(const mint a) const { return mint(*this) -= a;} mint operator*(const mint a) const { return mint(*this) *= a;} mint pow(ll t) const { if (!t) return 1; mint a = pow(t>>1); a *= a; if (t&1) a *= *this; return a; } mint inv() const { return pow(MOD-2);} mint& operator/=(const mint a) { return *this *= a.inv();} mint operator/(const mint a) const { return mint(*this) /= a;} }; istream& operator>>(istream& is, mint& a) { return is >> a.x;} ostream& operator<<(ostream& os, const mint& a) { return os << a.x;} struct Solver { VV G; void solve() { int n, m, t; cin >> n >> m >> t; G.resize(n); rep(i,m) { int a, b; cin >> a >> b; G[a].push_back(b); G[b].push_back(a); } auto dp = make_vec(t+1,n,mint(0)); dp[0][0] = 1; rep(i,1,t+1) { rep(j,n) { for(auto u: G[j]) { dp[i][j] += dp[i-1][u]; } } } print(dp[t][0]); } } solver; signed main(void) {cin.tie(nullptr);ios::sync_with_stdio(false);dump("");solver.solve();return 0;}