Files
2023-11-29 16:26:24 +08:00

9 lines
144 B
C++

#include <stdio.h>
#include <assert.h>
int main() {
int m, k, h;
scanf("%d %d %d", &m, &k, &h);
assert(m < 100000);
return 0;
}