fork download
  1. a=input("Dime un año:")
  2. if (a%4==0 and a/100!=0) or (a%400==0):
  3. print " Es bisiesto"
  4. else:
  5. print " No es bisiesto"
Success #stdin #stdout 0.01s 7324KB
stdin
2020
stdout
Dime un año: Es bisiesto