#include <iostream>
#include <fmt/core.h>
using namespace std;
using namespace fmt;
int main() {
int x = 0; // initializer
start_loop: // start of loop
println("X={}", x); // code
++x; // incrementer
if(x < 20) goto start_loop; // test
return 0;
}