#include<cstdio>int main(){int i, j, n = 64;for (i = 0; i < n; i++){for (j = 0; j <= n; j++)putchar((i & j) == j ? "*" : " ");putchar(10);}return 0;}