#include <stdio.h>
int main(void) {
int a, b, c = 0;
scanf("%d %d %d", &a, &b, &c);
int temp;
if (a > b) {
temp = a;
a = b;
b = temp;
}
if (a > c) {
temp = a;
a = c;
c = temp;
}
if (b > c) {
temp = b;
b = c;
c = temp;
}
printf("%d/%d\n", a, c);
return 0;
}