import java.lang.Math; class NaturalLog{ public static void main(String args[]){ int value = 100; System.out.println(Math.log(value)); } }