using System;
public class Program
{
public static void Main()
int b1=30;
int b2=--b1;
Console.WriteLine(b2);
}