diff --git a/HelloStudents/HelloStudents.csproj b/HelloStudents/HelloStudents.csproj
index 94dc10e..4108bba 100644
--- a/HelloStudents/HelloStudents.csproj
+++ b/HelloStudents/HelloStudents.csproj
@@ -66,7 +66,7 @@
-
+
diff --git a/HelloStudents/Program.cs b/HelloStudents/Program.cs
index fac8c80..be88b87 100644
--- a/HelloStudents/Program.cs
+++ b/HelloStudents/Program.cs
@@ -196,6 +196,14 @@ static void Main(string[] args) // 메서드 이름 대문자
// 3201
// 3202
+ students.Add(
+ new Student3202Gang()
+ {
+ FirstName = "Jongah",
+ LastName = "Gang",
+ StudentNumber = 3202,
+ BaseYear = 3202
+ });
// 3203
// 3204
// 3205
diff --git a/HelloStudents/Student3202Gang.cs b/HelloStudents/Student3202Gang.cs
new file mode 100644
index 0000000..7d0d299
--- /dev/null
+++ b/HelloStudents/Student3202Gang.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace HelloStudents
+{
+ class Student3202Gang : StudentBase
+ {
+ public override string Hello()
+ {
+ return "무야호~ 나는" + this + "입니다.";
+ }
+ }
+}