Advertisement
Guest User

Demo

a guest
Feb 6th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static void Main(string[] args)
  2.         {
  3.             int input = int.Parse(Console.ReadLine());
  4.             Console.WriteLine("{0} hours and {1} mins", input / 60, input % 60);
  5.  
  6.             Console.ReadLine();
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement