#include // This is defined in our assembly file unsigned long times_three(unsigned long param); int main(){ printf("100 times 3 is: %lu\n", times_three(100)); printf("21 times 3 is: %lu\n", times_three(21)); return 0; }