#include <stdio.h>

#define WITH_INITIAL_JUMP_IN switch (0)
#define JUMP_IN default:

int main(void) {
    int i = 2;

    WITH_INITIAL_JUMP_IN while (i--) {
        puts("First action");
        JUMP_IN
        puts("Second action");
      }
    return 0;
  }