0b44a031
1 2 3 4 5 6
#include <inttypes.h> imaxdiv_t imaxdiv(intmax_t num, intmax_t den) { return (imaxdiv_t){ num/den, num%den }; }