12 lines
182 B
C#
12 lines
182 B
C#
using System;
|
|
|
|
namespace ConsoleApplication
|
|
{
|
|
public class L12
|
|
{
|
|
public static string Value()
|
|
{
|
|
return "L12 " + L22.Value();
|
|
}
|
|
}
|
|
}
|