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