/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
public class Main
{
	public static void main (String[] args) throws java.lang.Exception
	{
		float f1 = 0.37885f;
		short s1 = (short)Math.round(f1);
		System.out.println("s1 = " + s1);

		float f2 = 27.67885f;
		short s2 = (short)Math.round(f2);
		System.out.println("s2 = " + s2);
	}
}