
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		//using parse methods
		String x = "12";
		
		short y = Short.parseShort(x);
		float z = Float.parseFloat(x);
	}
}