#include int main(void) { int a, b; a = 1; b = 3; int i; for ( i = 0;i < 5; i++ ) { a = a * b; } printf("%d\n", a); return 0; }