DEV Community

Avinash Mathi
Avinash Mathi

Posted on

Hints: Provide hints after a certain number of wrong guesses, such as whether the number is even or odd.

num1=input("Enter the odd:")
num2=input("Enter the even:")
print("The number is even")
print("The provide is odd")
print(num1,num2)
o/p
Enter the odd:6
Enter the even:7
The provide is odd
The number is even
6 7

Top comments (0)