#include // Q: How many Wows? void main() { int N = 8; for(int i=0; i < N; i++) for(int j=1; j <= N; j=j*2) cout << "Wow! "; }