|  | 
|  | 
| вернуться в форум | What is Output Limit Exceded? My prog:
 using System;
 using System.Collections.Generic;
 using System.Text;
 
 namespace Timus
 {
 class Program
 {
 static void Main()
 {
 string[] num = Console.ReadLine().Split(' ');
 Console.Write((long)2 * Math.Min(long.Parse(num[0]), long.Parse(num[1])) - 2);
 }
 }
 }
The problem with output limit in C# is under investigation (-)  
 Edited by author 10.03.2007 00:17
Re: Problem is fixed (-) Thank's a lot. | 
 | 
|