package test1;
public class test1 {
public static void main(String[] args) {
String dou="45.65";
double myStr=Double.parseDouble(dou);
System.out.println(myStr);
String a="45";
int myInt=Integer.parseInt(a);
System.out.println(myInt);
}
}