My issue
My code
input_str = input()
x_str, y_str = input_str.split()
x = int(x_str)
y = int(y_str)
if x + y > 6:
print("Yes")
else:
print("No")
Problem Link: GDTURN Problem - CodeChef
input_str = input()
x_str, y_str = input_str.split()
x = int(x_str)
y = int(y_str)
if x + y > 6:
print("Yes")
else:
print("No")
Problem Link: GDTURN Problem - CodeChef