program Negative {
	section module {
 
	}
	section data {
		int rax = 0
		string str_0 = "value is: "
		string fmt_int = "%lld "
		string fmt_str = "%s "
		string newline = "\n"
		int x = 0
		int y = 0
		int z = 0
	}
	section code {
	start:
		mov x, 5
		mov y, 0
		sub y, 1
		mov z, x
		add z, y
		print fmt_str, str_0
		print fmt_int, z
		print newline
		done
	}
}