Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp3
- {
- class Program
- {
- static void Main(string[] args)
- {
- int first = int.Parse(Console.ReadLine());
- int second = int.Parse(Console.ReadLine());
- int third = int.Parse(Console.ReadLine());
- int sum = first + second + third;
- int min = sum / 60;
- int sec = sum % 60;
- Console.Write(min);
- if (sec < 10)
- {
- Console.WriteLine(":0"+sec);
- }
- else
- {
- Console.WriteLine(":"+sec);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment