0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:25:25 +00:00
OI-codes/Luogu/problem/CF9A/CF9A.cpp

35 lines
573 B
C++
Raw Normal View History

2020-09-28 13:07:56 +00:00
// R38990825
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
string ans;
cin >> a >> b;
c = max(a, b);
switch (c) {
case 1:
ans = "1/1";
break;
case 2:
ans = "5/6";
break;
case 3:
ans = "2/3";
break;
case 4:
ans = "1/2";
break;
case 5:
ans = "1/3";
break;
case 6:
ans = "1/6";
break;
}
cout << ans << endl;
return 0;
}