#include <stdio.h>

void subroutine() {
	// do nothing
}

int main() {
	subroutine();
	printf("hello world\n");
	return 0;
}