- 1 internal class Program
- 2 {
- 3 private static void Main(string[] args)
- 4 {
- 5 Terrestrial terrestrial = new Terrestrial();
- 6 terrestrial.breath("??");
- 7 terrestrial.breath("??");
- 8 terrestrial.breath("??");
- 9
- 10 Aquatic aquatic = new Aquatic();
- 11 aquatic.breath("??");
- 12 }
- 13 }