比赛 202110省实验桐柏一中普及组联赛 评测结果 EAEEWEEEWE
题目名称 分数约分 最终得分 10
用户昵称 Golden_cursor 运行时间 1.311 s
代码语言 C++ 内存使用 4.01 MiB
提交时间 2021-10-18 19:01:58
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
unsigned long long a,b;
int max_g(int a,int b){
	if(a%b==0)return b;
	else return max_g(b,a%b);
}
int main(){
	freopen("yuefen.in","r",stdin);
	freopen("yuefen.out","w",stdout);
	cin>>a>>b;
	cout<<a/max_g(a,b)<<" "<<b/max_g(a,b);
	return 0;
}