比赛 202110省实验桐柏一中普及组联赛 评测结果 WAWWWWWWWW
题目名称 分数约分 最终得分 10
用户昵称 nichengyan 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2021-10-18 17:58:00
显示代码纯文本
#include <bits/stdc++.h> 
using namespace std;
#define ull unsigned long long
ull gcd(int a,int b){
	if(a%b==0) return b;
	return gcd(b,a%b);
}
void baoli(ull a,ull b){
	for(int i=1;i<=1e6;i++){
		if(a%i==0&&b%i==0){
			a/=i;b/=i;
		}
	}
	cout<<a<<" "<<b<<endl;
}
void work1(ull a,ull b){
	cout<<a/gcd(b,a)<<" "<<b/gcd(b,a)<<endl;
}
int main(){
	freopen("yuefen.in","r",stdin);
	freopen("yuefen.out","w",stdout);
	ull a,b;
	cin>>a>>b;
	work1(a,b);
	fclose(stdin);
	fclose(stdout);
	return 0;
}