using System;
namespace _014_编程题
{
class Program
{
static void Main(string[] args)
{
char sex = Convert.ToChar(Console.ReadLine());
int number = Convert.ToInt32(Console.ReadLine());
if(sex == 'F')
{
//Console.WriteLine("800M长跑");
string project = "800M长跑";
if(number % 2 == 1)
{
//Console.WriteLine("跳绳");
project += " 跳绳";
}
else
{
//Console.WriteLine("仰卧起坐");
project += " 仰卧起坐";
}
Console.WriteLine(project);
}
else
{
Console.WriteLine("1000M长跑");
if (number % 2 == 1)
{
Console.WriteLine("跳远");
}
else
{
Console.WriteLine("俯卧撑");
}
}
//分支语句只有一行,可以省略{}
if (true)
Console.WriteLine("Hello, World!");
Console.WriteLine("结束");
}
}
}