#include <bits/stdc++.h>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a << '/';
if (b < 0) cout << '(' << b << ')';
else cout << b;
cout << '=';
if (b == 0) puts("Error");
else printf("%.2lf", (double)a / b);
return 0;
}