└── execute conversion of other datatype.java /execute conversion of other datatype.java: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | import java.util.*; 3 | import java.text.*; 4 | import java.math.*; 5 | import java.util.regex.*; 6 | 7 | public class Solution { 8 | 9 | public static void main(String[] args) { 10 | Scanner sc=new Scanner(System.in); 11 | int n1; 12 | n1=sc.nextInt(); 13 | char ch=(char)n1; 14 | System.out.println(ch); 15 | /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */ 16 | } 17 | } 18 | --------------------------------------------------------------------------------