ans

DOZIE 2022-06-24 14:22:09 13 返回题目

#include <bits/stdc++.h> using namespace std; int main(){ int a , b; cin >> a >> b; while (a != b){ if (a > b) a = a - b; else b = b - a; } cout << a; return 0; }

{{ vote && vote.total.up }}