#!/bin/bash

if [ "$RANDOM" -lt 16384 ]
then
    exit 0
else
    exit 1
fi