View Code of Problem 52

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
     Scanner in=new Scanner(System.in);
     String str=in.nextLine();
     StringBuffer s=new StringBuffer(str);
     str=s.reverse().toString();
      System.out.println(str);
      }
}

Double click to view unformatted code.


Back to problem 52