比赛 |
202110省实验桐柏一中普及组联赛 |
评测结果 |
AAAAAAAAAA |
题目名称 |
分数约分 |
最终得分 |
100 |
用户昵称 |
佚名 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2021-10-18 21:05:24 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
inline __int128 read()
{
__int128 x=0,f=1;
char ch=getchar();
while(ch<'0'||ch>'9')
{
if(ch=='-')
f=-1;
ch=getchar();
}
while(ch>='0'&&ch<='9')
{
x=x*10+ch-'0';
ch=getchar();
}
return x*f;
}
inline void write(__int128 x)
{
if(x<0)
{
putchar('-');
x=-x;
}
if(x>9)
write(x/10);
putchar(x%10+'0');
}
int main()
{
freopen("yuefen.in","r",stdin);
freopen("yuefen.out","w",stdout);
__int128 a=read(),b=read(),t,aa,bb;
aa=a;
bb=b;
while(b!=0)
{
t=b;
b=a%b;
a=t;
}
write(aa/a);
cout<<" ";
write(bb/a);
return 0;
}