- 1 using System;
- 2 using System.Collections.Generic;
- 3 using System.Linq;
- 4 using System.Text;
- 5 using System.Threading.Tasks;
- 6 using System.Runtime.InteropServices;
- 7
- 8 namespace AcmeCollections
- 9 {
- 10 class Program
- 11 {
- 12 static void Main(string[] args)
- 13 {
- 14 long ans;
- 15 string str;
- 16 MyMath myMath = new MyMath();
- 17 ans = myMath.Add(1, 2);
- 18 str = Convert.ToString(ans);
- 19 Console.WriteLine(str);
- 20 Console.ReadLine();
- 21 }
- 22 }
- 23 }