Run ID:96699
提交时间:2024-11-09 11:57:30
#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; }