21 lines
240 B
Text
21 lines
240 B
Text
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
namespace std {
|
|
struct div_t {
|
|
int quot, rem;
|
|
};
|
|
|
|
struct ldiv_t {
|
|
long quot, rem;
|
|
};
|
|
|
|
struct lldiv_t {
|
|
long long quot, rem;
|
|
};
|
|
|
|
struct imaxdiv_t {
|
|
long long quot, rem;
|
|
};
|
|
}
|