//"OPEN SOURCE SINCE 1986" //diy_death@theunknown.com #include int main() { loop: int x; cout <<"Enter A Number Greater Than 10 Or Less Than 10!\n"; cin>>x; cout<<"\n"; if (x>10) cout<<"Wow That Number is amzingly Higher than 10!!\n\n\n"; else cout<<"Ohh My Gosh Thats Less than 10!!!\n\n\n"; goto loop; return 0; }