delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

18
1.1888.cpp Normal file
View File

@ -0,0 +1,18 @@
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
#ifdef local
freopen("pro.in","r",stdin);
#endif
int a,b,c; cin>>a>>b>>c;
int x=max(max(a,b),c);
if(a==x) swap(a,c);
if(b==x) swap(b,c);
if(a>b) swap(a,b);
int d=__gcd(a,c);
a/=d; c/=d;
cout<<a<<'/'<<c<<endl;
return 0;
}