#include <math.h> long long llroundl(long double x) { return roundl(x); } #ifdef TEST int main(void) { return 0; } #endif