D. 0
x = int(input()) # x = 3
y = int(input()) # y = 2
x = x % y # x = 3 % 2 = 1
x = x % y # x = 1 % 2 = 1
y = y % x # y = 2 % 1 = 0
print(y) # Output: 0
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Donny_575
1 week, 5 days ago