#include <stdio.h> #include <unistd.h> int main(int argc, char **argv){ int answer = 84 >> 1; printf("Answer: %d\n", answer); fork(); return 0; }