General
 
 
# Author Problem Lang Verdict Time Memory Sent Judged  
18905395 Practice:
mnepohyi
688B - 12 Mono C# Accepted 62 ms 1672 KB 2016-07-05 20:54:18 2016-07-05 20:54:19
→ Source
using System;

public class Program
{
    public static void Main()
    {
        string a = Console.ReadLine();
        Console.WriteLine(a + Reverse(a));
    }
    
    public static string Reverse( string s )
    {
        char[] charArray = s.ToCharArray();
        Array.Reverse( charArray );
        return new string( charArray );
    }
}
?
Time: ? ms, memory: ? KB
Verdict: ?
Input
?
Participant's output
?
Jury's answer
?
Checker comment
?
Diagnostics
?
Click to see test details