#include #include using namespace std; using namespace atcoder; using ll = long long; using ull = unsigned long long; using Graph = vector >; using mint = modint998244353; const int INF = 1e9; const int MOD = 1e9+7; const ll LINF = 1e+18; #define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i)) #define REP2(i, s, n) for (int i = (s); i < (int)(n); i++) #define REPB(i,n) for(int i = n-1; (int)i >= 0; --i) #define FOREACH(x,a) for(auto& (x) : (a) #define YESNO(T) if(T){cout<<"YES"< #define VL vector #define VS vector #define VC vector #define VVI vector > #define VVL vector > #define VVC vector > #define VPII vector > #define VPLL vector > #define VPSI vector > template inline void printVec(std::vector v){ REP(i,v.size()){ if(i) std::cout << " "; std::cout << v[i]; } std::cout << std::endl; } template bool chmax(T& a,T b) { if(a < b) { a = b; return true; } return false; } template bool chmin(T& a,T b) { if(a > b) { a = b; return true; } return false; } ll gcd(ll a, ll b){ if(b == 0) return a; else return gcd(b , a & b); } ll lcm(ll a, ll b){ return a * b / gcd(a,b); } int main() { cin.tie(0); ios_base::sync_with_stdio(false); int h,w,k; cin >> h >> w >> k; VVI block(h,VI(w,0)); REP(i,k){ int x,y,v; cin >> x >> y >> v; REP(i,h) REP(j,w){ if(i == x - 1 && j == y-1){ block[i][j] = v; } } } // REP(i,h){ // printVec(block[i]); // } mint sum = 0; REP(i,h) REP(j,w){ REP(k,h) REP(l,w){ // マス(i,j)に対する操作 if(k + l >= i + j && k - l >= i - j){ sum += block[k][l]; } } } cout << sum.val() << endl; return 0; }