import java.io.*;
class pr5
{
public static void main(String args[]) throws IOException
{
DataInputStream br=new DataInputStream(System.in);
System.out.println("Enter your String :->");
String str=br.readLine();
System.out.println("Your string is :->"+str);
}
}
No comments:
Post a Comment