class byteshift
{
public static void main(String args[])
{
byte b;
double d=417;
b=(byte)d;

System.out.print(b);
}