// Children and Seniors get discount #include using namespace std; int main() { int age; cout<<"Enter your age:"; cin>>age; if (age <=12 || age>=65) cout<<"You get a discount\n"; else cout<<"You do not get a discount\n"; system("pause"); return 0; } // main