python
如果一个人至少30岁, 并且成为美国公民至少9年,就有资格成为美国参议员。作为美国众议员,年限分别是25岁和7年。编写个程序, 接受个人的年龄和公民年数作为输入,并输出他的参议院和众议院资格。
age = input("age:")
year = input("year:")
if age >= 30 and year >= 9:
print("参议员")
if age >= 25 and year >= 7 :
print("众议员")