fork download
  1. #include <stdio.h>
  2.  
  3. int i,j;
  4.  
  5. main() {
  6. for(i=2; i<13; i++){
  7. for(j=1; j<13; j++){
  8. printf("%dx%d=%d",i,j,i*j);
  9. }
  10. }
  11. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
2x1=22x2=42x3=62x4=82x5=102x6=122x7=142x8=162x9=182x10=202x11=222x12=243x1=33x2=63x3=93x4=123x5=153x6=183x7=213x8=243x9=273x10=303x11=333x12=364x1=44x2=84x3=124x4=164x5=204x6=244x7=284x8=324x9=364x10=404x11=444x12=485x1=55x2=105x3=155x4=205x5=255x6=305x7=355x8=405x9=455x10=505x11=555x12=606x1=66x2=126x3=186x4=246x5=306x6=366x7=426x8=486x9=546x10=606x11=666x12=727x1=77x2=147x3=217x4=287x5=357x6=427x7=497x8=567x9=637x10=707x11=777x12=848x1=88x2=168x3=248x4=328x5=408x6=488x7=568x8=648x9=728x10=808x11=888x12=969x1=99x2=189x3=279x4=369x5=459x6=549x7=639x8=729x9=819x10=909x11=999x12=10810x1=1010x2=2010x3=3010x4=4010x5=5010x6=6010x7=7010x8=8010x9=9010x10=10010x11=11010x12=12011x1=1111x2=2211x3=3311x4=4411x5=5511x6=6611x7=7711x8=8811x9=9911x10=11011x11=12111x12=13212x1=1212x2=2412x3=3612x4=4812x5=6012x6=7212x7=8412x8=9612x9=10812x10=12012x11=13212x12=144