My issue
My code
# Solution as follows
a = int(input(25))
b = int(input(20))
if a > b:
print("Coding is Fun!")
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
# Solution as follows
a = int(input(25))
b = int(input(20))
if a > b:
print("Coding is Fun!")
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
The input () method takes input during run time.If you write something in the input() method like input("Enter a number ") ,it will appear on the output screen as "Enter a number "
So try this
a=int(input())
b=int(input())
if a>b:
print (“Coding is fun !”)