#include int main () { int n = 0; int res = 0; res = scanf("%d", &n); if (n%2 > 0) { printf("Alice\n"); } else { printf("Bob\n"); } return 0; }