1#include <math.h>
2
3long long llroundf(float x) {
4    return roundf(x);
5}
6