Facebook
From Nabeeha Fiona Abdullah, 1 Year ago, written in Python.
Embed
Download Paste or View Raw
Hits: 119
  1. #Beautiful Year
  2.  
  3. #num = int(input())
  4.  
  5. #while True:
  6.  
  7. #    num = num + 1
  8. #    if len(set(str(num))) == len(str(num)):
  9. #        break
  10. #print(num)
  11.  
  12.  
  13.  
  14. #Hulk
  15.  
  16. #n = int(input())
  17.  
  18.  
  19. #for n in range(n):
  20. #    print("I hate that I love that")
  21. #else:
  22. #    if n in range(n) == 1:
  23. #        print("I hate it")
  24.  
  25. #if n/2 == 1:
  26. #    print("I love it")
  27. #else:
  28. #    print("I hate it")
  29.  
  30.  
  31.  
  32.  
  33.  
  34. #Odd Divisor
  35.  
  36. #x = int(input())
  37.  
  38. #y = x/2
  39. #if y == 1:
  40. #    print("yes")
  41. #else:
  42. #    print("no")
  43.  
  44.  
  45.  
  46. #Month
  47.  
  48. #x=int(input())
  49. #if(x==1):
  50. #    print("January")
  51. #elif(x==2):
  52. #    print("February")
  53. #elif(x==3):
  54. #    print("March")
  55. #elif(x==4):
  56. #    print("April")
  57. #elif(x==5):
  58. #    print("May")
  59. #elif(x==6):
  60. #   print("June")
  61. #elif(x==7):
  62. #    print("July")
  63. #elif(x==8):
  64. #    print("August")
  65. #elif(x==9):
  66. #    print("September")
  67. #elif(x==10):
  68. #    print("October")
  69. #elif(x==11):
  70. #    print("November")
  71. #elif(x==12):
  72. #    print("December")
  73.  
  74.  
  75.  
  76. #Six Odd Numbers
  77.  
  78. #x = int(input())
  79. #i=0
  80. #while(i<6):
  81. #    if(x%2!=0):
  82. #        print(x)
  83. #        i=i+1
  84. #    x = x+1
  85.  
  86.  
  87.  
  88. Sir i couldnt do the last one