#include<bits/stdc++.h>
using namespace std;
int ans[21]; //用于存放答案
int n, total; //总方案数
void pr(int d){ //按照要求打印答案
total+=1;
cout<<n<<"=";
for(int i=1; i<=d-1; i++)cout<<ans[i]<<"+";
cout<<ans[d]<<endl;
}
void dfs(int dep, int rest){
if(rest==0){
if(dep>2){ //避免单独值的出现
pr(dep-1);
return;
}
}
for(int i=ans[dep-1]; i<=rest; i++){
ans[dep]=i;
dfs(dep+1, rest-i);
}
}
int main()
{
cin>>n;
ans[0]=1;//初始化拆,18行循环语句的初始值
dfs(1, n);
//cout<<total;
return 0;
}