#include <stdio.h>

int main() {
    int num = 1;
    while (num > 0) {
        printf("This loop will run forever!\n");
    }
    return 0;
}