#include <stdio.h>
#include <stdbool.h>

int test_func(int x) {
    if (x < 0) {
      return 0xfeed;
    }
    return 0xaabbccdd;
}

int main() {
    printf("%d\n", test_func(14));
    return 0;
}
