import java.io.*; import java.util.*; class kgsToPounds { public static void main (String[] args)throws Exception{ //1 kilograms = 2.20462262 pounds; BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the Kilogram:"); int kilo = Integer.parseInt(bf.readLine()); double pond = kilo * 2.20462262; System.out.println("Pounds: " + pound); } }