My issue
Getting this error
Traceback (most recent call last):
File “./prog.py”, line 8, in
ValueError: invalid literal for int() with base 10: ‘1 4’
What should I change in my code
My code
# cook your dish here
import numpy as np
t= int(input("Give number of test cases"))
while t>0:
x = int(input("Give Chef's dice number"))
#print(x)
y = int(input("Give Chefina's dice number"))
#print(y)
if x+y>6:
print("YES")
else :
print("No")
t=t-1
Problem Link: GDTURN Problem - CodeChef