12345678910111213141516171819202122232425 |
- using System.Text.RegularExpressions;
- namespace ConsoleApp4
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- }
-
- public static bool istrue(string a)
- {
- if (a == "lox")
- {
- return true;
- }
- else return false;
- }
-
- }
- }
|