记录编号 565684 评测结果 AAAAAAAAWW
题目名称 分数约分 最终得分 80
用户昵称 GravatarKHYL 是否通过 未通过
代码语言 C++ 运行时间 0.000 s
提交时间 2021-10-22 21:28:10 内存使用 0.00 MiB
显示代码纯文本
#include<bits/stdc++.h>
#define l unsigned long long
using namespace std;
l a,b;
int m(l x,l y){
	if(!y) return x;
	return m(y,x%y);
}
int main(){
	freopen("yuefen.in","r",stdin);
	freopen("yuefen.out","w",stdout);
	cin>>a>>b;
	cout<<a/m(a,b)<<" "<<b/m(a,b)<<endl;
	return 0;
}