1#include <math.h>
2
3long long llround(double x) {
4    return round(x);
5}
6