#include<stdio.h> int main(void) { int s=1; int x=8, y=20; for(; x>0 && y>0; ) { s*=3; x-=1; y/=2; } printf("%d", s*=1); return 0; }