a,b=input().split(' ')a,b=int(a),int(b)try: if a%b==0: print("OK!") else: print(a%b)except: print('OK!')