比赛 202110省实验桐柏一中普及组联赛 评测结果 AAAAAAAAWW
题目名称 分数约分 最终得分 80
用户昵称 lihaha 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2021-10-18 18:14:50
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;

int main(){
	freopen("yuefen.in","r",stdin);
	freopen("yuefen.out","w",stdout);
	long long a,b,yushu,ans1,ans2;
	scanf("%lld%lld",&b,&a);
	long long chua=a,chub=b;
	while(1){
		yushu=a%b;
		if(yushu==0) break;
		a=b;
		b=yushu;
	}
	ans1=chua/b;
	ans2=chub/b;
	printf("%lld %lld",ans2,ans1);
	return 0;
}