Quick actions

cmd+k|ctrl+k

Navigation

Languages

Task 779C

Snippet info

Language

Csharp

Visibility

public

Author

aka

Created

2017-03-01T05:36:34Z

Updated

2017-03-01T19:47:02Z

// http://codeforces.com/problemset/problem/779/C

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

class Program {
    static void Main() {
        var input = Enumerable.Range(0, 3).Select(i => Console.ReadLine());
        var cs = Case.Parse(input);
        Console.WriteLine(cs);
        Console.WriteLine("Result: {0}", cs.Solve());
    }
}
INFO