记录编号 565601 评测结果 AAAAAAAAWW
题目名称 分数约分 最终得分 80
用户昵称 GravatarOtaBoki 是否通过 未通过
代码语言 C++ 运行时间 0.000 s
提交时间 2021-10-21 19:29:12 内存使用 0.00 MiB
显示代码纯文本
    #include<bits/stdc++.h>
    using namespace std;
    #define int __int128
     
    inline int read(){
	long long s=0,f=1;//s:数值 w符号 
	char ch=getchar();
	while(ch<'0'||ch>'9'){
		if(ch=='-')
		f=-1;
		ch=getchar();
	}//将数字以外过滤 
	while(ch>='0'&&ch<='9'){
		s=s*10+ch-'0';
		ch=getchar();
	}//将每一位结果累加 
	return s*f;//乘上符号 
}//快读 
     
    inline void print(int x){
    	if(x<0)putchar('-'),x=-x;
    	if(x>9)print(x/10);
    	putchar(x%10^48);
    }
     
    int gcd(int a,int b){
    	if(b==0)return a;
    	return gcd(b,a%b);
    }
     
    signed main(){
	freopen("yuefen.in","r",stdin);
	freopen("yuefen.out","w",stdout);
        int a=read(),b=read(); 
        int gcdd=gcd(a,b);
        print(a/gcdd),printf(" "),print(b/gcdd);
    	return 0;
    }