| 75 | |
| 76 | |
| 77 | int main() { |
| 78 | int test = 0; |
| 79 | ll N,D; |
| 80 | cin >> test ; |
| 81 | while(test--) { |
| 82 | cin >> N >> D; |
| 83 | mindsum *m = new mindsum(N,D); |
| 84 | m->findMinSum(); |
| 85 | m->printOutput(); |
| 86 | delete(m); |
| 87 | } |
| 88 | return 0; |
| 89 | } |
| 90 |
nothing calls this directly
no test coverage detected