#include <bits/stdc++.h>
using namespace std;
#define int long long 
#define F first
#define S second

mt19937 rng(time(nullptr));
int rnd(int B){
	return (unsigned long long)rng()%B;
}

signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	

		
	int k;
	cin>>k;
	vector<int>a;
	int cnt = 0;
	for(int j = 1010;j>0;j--){
		while(j*j*j*j<=k)k-=j*j*j*j, cnt++, a.push_back(j);
	}
	int L = 0;
	for(auto u : a)L+= 2*u+2;
	L-=2;
	vector<vector<int>>ans(L,vector<int>(L,1));
	int lx = -1;
	int rx = L;
	int ly = -1;
	int ry = L;
	for(int i = 0;i<a.size();i++){
		lx+=a[i]+1;
		rx-=a[i]+1;
		ly+=a[i]+1;
		ry-=a[i]+1;
		for(int x = lx;x<=rx;x++){
			ans[x][ly] = 0;
			ans[x][ry] = 0;
		}
		for(int y = ly;y<=ry;y++){
			ans[lx][y] = 0;
			ans[rx][y] = 0;
		}
	}
	assert(L<=2025);
	cout<<L<<" "<<L<<endl;
	for(int i = 0;i<L;i++){
		for(int j = 0;j<L;j++){
			if(ans[i][j])cout<<'#';
			else cout<<'.';
		}
		cout<<endl;
	}
	
	
	
}