My issue
Oneful Pairs problem code for in python
My code
a,b=[int(i)for i input().split()]
if b>=a:
print("YES")
else:
print("NO")
Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone
Oneful Pairs problem code for in python
a,b=[int(i)for i input().split()]
if b>=a:
print("YES")
else:
print("NO")
Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone
@kolavalinavya
plzz refer the following solution for better understanding.
# cook your dish here
a,b=map(int,input().split())
c=a+b+(a*b)
if c == 111:
print('Yes')
else:
print('no')