Run ID:97526
提交时间:2024-11-16 10:29:45
#include <iostream> using namespace std; int main(){ long long a,b,yushu; cin>>a>>b; yushu = a%b; while(yushu != 0){ a = b; b = yushu; yushu = a%b; } cout<<b; }