You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
220 B

import java.util.Scanner;
public class ex
{
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
double x=input.nextDouble();
double y=Math.pow(Math.E, x);
System.out.println(y);
}
}