| 6 | struct Num { |
| 7 | int x; |
| 8 | Num(ll _x=0) { x = (_x%mod+mod)%mod; } |
| 9 | Num operator +(const Num &b) { return x + b.x; } |
| 10 | Num operator -(const Num &b) const { return x - b.x; } |
| 11 | Num operator *(const Num &b) const { return (ll)x * b.x; } |
nothing calls this directly
no outgoing calls
no test coverage detected