题解 | 牛妹数
牛妹数
https://www.nowcoder.com/practice/4430f088039b4286a2e265775fd4954a
n=int(input())
if n>50 and n%2==0:
print('yes')
else:
print('no')
'''
print("yes" if (lambda a:a > 50 and a%2 ==0)(*map(int, input().split())) else "no")
*解包操作符,把map对象展开
相当于把 [52]变成了独立的参数 52
"yes" if ... else "no"
如果lambda返回True,输出"yes"
如果lambda返回False,输出"no"
lambda这个匿名函数接收参数 a,返回布尔值:
'''
