using System;
using System.Numerics;
using System.Collections.Generic;
public class Program
{
public static void Main()
BigInteger a = new BigInteger(-10);
BigInteger b = a / 3;
Console.WriteLine ("{0} / 3 = {1}", a, b);
}