#include <stdio.h>
int main() {
int num = 5;
if (num > 0) {
// goto positive;
}
printf("This will not be printed.\n");
positive:
printf("The number is positive.\n");
return 0;
}
I2luY2x1ZGUgPHN0ZGlvLmg+CgppbnQgbWFpbigpIHsKICAgIGludCBudW0gPSA1OwoKICAgIGlmIChudW0gPiAwKSB7Ci8vICAgICAgICBnb3RvIHBvc2l0aXZlOwogICAgfQoKICAgIHByaW50ZigiVGhpcyB3aWxsIG5vdCBiZSBwcmludGVkLlxuIik7Cgpwb3NpdGl2ZToKICAgIHByaW50ZigiVGhlIG51bWJlciBpcyBwb3NpdGl2ZS5cbiIpOwoKICAgIHJldHVybiAwOwp9Cg==