import time

#n=input("input a year:")
n=time.localtime()[1]
'''
if n%400==0 or (n%4==0 and n%100!=0):
    print "yes"
else:
    print "not"
'''
print n

相关文章:

  • 2021-12-22
  • 2021-12-22
  • 2021-10-05
  • 2021-10-27
  • 2022-01-01
  • 2022-02-04
  • 2022-02-02
  • 2022-02-10
猜你喜欢
  • 2021-11-28
  • 2021-11-28
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案