@@ -0,0 +1,14 @@
#include <stdio.h>
int main() {
int input;
printf("Enter an integer: ");
scanf("%d", &input);
if (input >= 0 && input <= 10) {
printf("The number is in range\n");
}
return 0;
The note is not visible to the blocked user.