The question I am asking is: Write an expression that prints 'You must be rich!' if the variables young and famous are both True.
Sample output with inputs 'True' 'True': You must be rich!
What is wrong with the code below? Output is 'There is always the lottery...' instead of 'You must be rich!'.
young = (input() == 'True')
famous = (input() == 'True')
if (young == 'True') and (famous == 'True'):
print('You must be rich!')
else:
print('There is always the lottery...')