diff --git a/Python/Even_odd b/Python/Even_odd new file mode 100644 index 000000000..d471427b0 --- /dev/null +++ b/Python/Even_odd @@ -0,0 +1,6 @@ +def even_odd(): + n=int(input("Enter the number")) + if n%2 == 0: + print "Even no." + else: + print "Odd no."