Read an age (integer) and print:
eligibleif age is or greaternot eligibleif age is less than
Input: A single integer representing age
Output: Either eligible or not eligible
Use the >= comparison operator to check if the age meets the threshold. This is a straightforward two-branch decision.