aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/add.c
blob: 94116d56eb8ef80bc11433edec27a0bd74814ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
int main()
{
	int x = 8;
	int y = 29;
	int z = 84;

	z = z + y + (3 - y) + x;
	z = z - 3;
	
	return z;
}