Skip to content
Snippets Groups Projects
test.c 190 B
Newer Older
Anh Nguyen-Tuong's avatar
Anh Nguyen-Tuong committed
#include <iostream>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
	int x = 0;
	std::cin >> std::hex >> x;
	if (x == 0x01000000)
Anh Nguyen-Tuong's avatar
Anh Nguyen-Tuong committed
            abort();
	return 0;
}