#include <stdio.h>
int main() {
int input;
while (1) {
printf("Enter a number: ");
scanf("%d", &input);
if (input == 100) {
printf("Input is 100. Exiting...\n");
break;
}
printf("You entered: %d\n", input);
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: