i=1;outer:loop j=10;inner:loop print i*j;j=j+11;exit inner when j>45;endloop;i=i+1;exit when i>3;endloop; run 1