1#include <strings.h>
2
3int ffsll(long long i) {
4    return __builtin_ffsll(i);
5}
6