using System; using System.Collections.Generic; using System.Linq; using System.Text;
public static class Utils
{ public static string GetTimeString(int time)
{ int h = time / (60 * 60); int tMinush = time % (60 * 60); int m = tMinush / 60; int s = tMinush % 60;