/* which one is it */

#include <stdint.h>
#include <stdio.h>

main() {

FILE *cevo = 0, *cevohack = 0;

int32_t place = 0;
int32_t choice = 0;

cevo = fopen("cevo.exe","rb");
if(cevo == 0) {
	printf("Can not open cevo.exe\n");
	fflush(stdout);
	exit(0);
}

cevohack = fopen("cevo-netbook.exe","wb");
if(cevohack == 0) {
	printf("Can not write cevo-netbook.exe\n");
	fflush(stdout);
	exit(0);
}

place = 0;

while(!feof(cevo)) {
	int byte;
	byte = getc(cevo);
	if(feof(cevo)) {
		printf("Done!\n");
		printf("Place: %d\n",place);
		exit(0);
	}
	if(place == 723332) {
		putc(200,cevohack);
	} else {
		putc(byte,cevohack);
	}
	place++;
}	

}
