mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 20:13:14 +00:00
15 lines
252 B
C#
15 lines
252 B
C#
using System;
|
|
|
|
namespace problem_281A
|
|
{
|
|
public class problem_281A
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
string ip = Console.ReadLine();
|
|
ip = char.ToUpper(ip[0]) + ip.Substring(1);
|
|
Console.Write(ip);
|
|
}
|
|
}
|
|
}
|