#include <unistd.h> int main() { int i; for (i=0; i<4; i++) { write(STDOUT_FILENO,"Aha!\n",5); } return 0; }