#!/bin/bash
echo "ENTER KEYSIZE"
read key
echo "ENTER PROBABILITY OF BEING PRIME"
read prob
java RSA1 $key  $prob 
