Skip to content

Commit bc1a490

Browse files
committed
p32
1 parent 8f0791f commit bc1a490

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

32-gcf.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
def Division(num1,num2):
2+
while num2 != 0:
3+
num1, num2 = num2, num1%num2
4+
return num1
5+
6+
# keep this function call here
7+
# to see how to enter arguments in Python scroll down
8+
print Division(raw_input())

0 commit comments

Comments
 (0)