比赛 202110省实验桐柏一中普及组联赛 评测结果 AAAAAAAAWW
题目名称 分数约分 最终得分 80
用户昵称 TJ077 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2021-10-18 19:13:30
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
long long x,y;
long long gcd(long long a,long long b){
	if(a%b==0) return b;
	else return gcd(b,a%b);	
}
int main(){
	freopen("yuefen.in","r",stdin);
	freopen("yuefen.out","w",stdout); 
	cin>>x>>y;
	long long s=gcd(y,x);
    if(s<0) s=s*-1;
    if(x<0&&y<0){
    	cout<<x/s*-1<<" "<<y/s*-1;
    	return 0;
	}
	cout<<x/s<<" "<<y/s;
	
	
	return 0;
}