using System;
public class Program
{
public static void Main()
var clearLength = 160;
var encryptedInBytesLength = (clearLength / 16 + 1) * 16;
var encryptedInBase64Length = 4 * Math.Ceiling(encryptedInBytesLength / 3.0);
Console.WriteLine(encryptedInBytesLength);
Console.WriteLine(encryptedInBase64Length);
}