1 int
main(void)2 main(void) {
3 	int	x;
4 	int	y;
5 	x = 1337;
6 	y = 668;
7 	if (x == 1337 && y == 668) {
8 		puts("yep they are both correct");
9 	}
10 	return 0;
11 }
12 
13