Skip to content

Commit 9e6afd4

Browse files
committed
fix bug
1 parent 64076e3 commit 9e6afd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brain_games/games/b_gcd_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def b_gcd():
1212
numbers = [a, b]
1313
print('Find the greatest common divisor of given numbers.')
1414
while ngin.counter < 3:
15-
gcd_question = print(f'Question: {a} {b}')
15+
print(f'Question: {a} {b}')
1616
answer = input('Your answer: ')
1717
while b != 0:
1818
if max(numbers) % min(numbers) == 0:

0 commit comments

Comments
 (0)