#include <stdio.h>
int main()
{
printf("Please connect a DSM satellite receiver and make sure\n");
printf("your transmitter is on and paired to the receiver.\n");
printf("\n");
printf("Press ENTER to continue or anything else to quit\n");
getchar();
return 0;
}