diff options
Diffstat (limited to 'progs/a581.py')
-rw-r--r-- | progs/a581.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a581.py b/progs/a581.py new file mode 100644 index 0000000..e6a3359 --- /dev/null +++ b/progs/a581.py @@ -0,0 +1,6 @@ +import math
+def min_Operations(A,B):
+ if (A > B):
+ swap(A,B)
+ B = B // math.gcd(A,B);
+ return B - 1
\ No newline at end of file |