int main(int argc, char *argv[])
{
  long long ll = 1000000000000LL;
  unsigned long long ull = 1000000000000LL;

  return ull - ll != 0LL;
}
