def notRelPrime(a,b):for i in range(2,a+1):if(a%i==0 and b%i==0):return True;return False;x = int(input("enter number: "))y = int(input("enter number: "))print(notRelPrime(x,y))
s =input("enter a word: ") EOFError: EOF when reading a linehow can i fix this error?
how can i fix this error?
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here