Skip to content

Instantly share code, notes, and snippets.

@modos
Created September 12, 2022 18:08
Show Gist options
  • Save modos/a0c4e8acdda0cd7edd9391701e633cf5 to your computer and use it in GitHub Desktop.
Save modos/a0c4e8acdda0cd7edd9391701e633cf5 to your computer and use it in GitHub Desktop.
گردو شکستم
n,x,y = map(int,input().split())
b=0
while b*y <= n:
if (n-b*y)%x==0:
print((n-b*y)//x,b)
break
b+=1
else:
print(-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment