String Typecast
Problem Statement
Given an integer N, you need to typecast this integer to String. If the typecasting is done successfully then we will print "Nice Job" otherwise "Wrong answer".
static String checkConevrtion(int a)
{
String s=String.valueOf(a);
return s;
}