Posts

Showing posts with the label Even odd program in python

Even odd program in python

  Even odd program in python           n=int(input())      if(n%2==0):          print("Even")      else:          print("Odd")