What is the output of the following code?
if 'U' not in 'UQU': print('Yes') else: print('No')
Yes
No
SyntaxError