/**************************************************
filename :e.cpp
author :maksyuki
created time :2018/6/11 11:06:29
last modified :2018/6/11 11:14:36
file location :C:\Users\abcd\Desktop\TheEternalPoet
***************************************************/
#pragma comment(linker, "/STACK:102400000,102400000")
#include <set>
#include <bitset>
#include <list>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <string>
#include <vector>
#include <ios>
#include <iostream>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include <utility>
#include <complex>
#include <numeric>
#include <functional>
#include <cmath>
#include <ctime>
#include <climits>
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cassert>
using namespace std;
#define CFF freopen ("in", "r", stdin)
#define CFO freopen ("out", "w", stdout)
#define CPPFF ifstream cin ("in")
#define CPPFO ofstream cout ("out")
#define DB(ccc) cout << #ccc << " = " << ccc << endl
#define DBT printf("time used: %.2lfs\n", (double) clock() / CLOCKS_PER_SEC)
#define PB push_back
#define MP(A, B) make_pair(A, B)
typedef long long LL;
typedef unsigned long long ULL;
typedef double DB;
typedef pair <int, int> PII;
typedef pair <int, bool> PIB;
const int INF = 0x7F7F7F7F;
const int MOD = 1e9 + 7;
const double EPS = 1e-10;
const double PI = 2 * acos (0.0);
const int maxn = 1e5 + 6666;
typedef pair<long long, long long> PLL;
LL gcd(LL a, LL b) {
return (!b)? a : gcd(b, a % b);
}
int main()
{
#ifdef LOCAL
CFF;
//CFO;
#endif
LL k;
vector<PLL> ans;
while(cin >> k) {
ans.clear();
for(LL y = 1; y <= 2 * k; y++) {
LL ta = gcd(y, k);
LL tb = y * k / ta;
LL tmpa = tb / k - tb / y;
LL tmpb = gcd(tmpa, tb);
tmpa /= tmpb;
tb /= tmpb;
if(tmpa == 1 && tb >= y)
ans.emplace_back(PLL(y, tb));
}
int alen = ans.size();
cout << alen << endl;
for(int i = 0; i < alen; i++)
cout << "1/" << k << " = " << "1/" << ans[i].second << " + " << "1/" << ans[i].first << endl;
}
return 0;
}