~cpp #include <stdio.h> void repeat() { int i; for(i=0; i<5; i++) { printf("CAUCSE LOVE. \n"); } } void main() { repeat(); }