#include void f(const int a, const int b) { if (a == 20) return; print("Ten to the power of "); print(a); print(" is "); print(b); new_line(); f(a+1, b*10); } int main() { f(0, 1); }