#!/usr/bin/python
width=11
height=11
print width;
print height;
for x in range(width*height): print 100.0;
