using System;
public class Program
{
public static void Main()
int n1,n2,n3;
Console.Write("insert the number of the austwanas: ");
n1 = int.Parse(Console.ReadLine());
n2 = n1/50;
n3 = n1%50;
Console.WriteLine("the number of full packages is: {0}", n2);
Console.WriteLine("the rest of the austwanas is: {0}",n3);
}