1/*
2 * Check the hard limit of operands
3 */
4BEGIN
5{
6	@ok = 1 + 2 * 3 - 4 + 5;
7	printf("That's ok: '%d'\n", @ok);
8	@notok = 6 * 5 - 4 / 3 + 2 - 1;
9}
10