fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int i,j;
  5. for(i=1;i<=2;i++)
  6. {
  7. for(j=1;j<=2;j++)
  8. {
  9. if(i==j)
  10. continue;
  11. printf("%d\t%d\n",i,j);
  12. }
  13. }
  14. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
1	2
2	1