your browser not support this video

using System; using System.IO; using System.Linq; using System.Collections.Generic; namespace sen_fard { public static class Program { public static void Main(string[]args) { Console.Title="sen fard"; int sal,mah,hafteh,rooz,bn,bn1,bn2; Console.ForegroundColor=ConsoleColor.Green; Console.Write("Enter number>>>:"); int n=int.Parse(Console.ReadLine()); sal=n/365; bn=n%365; mah=bn/30; bn1=bn%30; hafteh=bn1/7; bn2=bn1%7; rooz=bn2; Console.ForegroundColor=ConsoleColor.Blue; Console.WriteLine("======================="); Console.ForegroundColor=ConsoleColor.Red; Console.WriteLine("======================="); Console.ForegroundColor=ConsoleColor.Yellow; Console.WriteLine("sal{0},mah{1},hafteh{2},rooz{3}",sal,mah,hafteh,rooz); Console.ReadKey(); } } }