diff --git a/HelloStudents/HelloStudents.csproj b/HelloStudents/HelloStudents.csproj
index 23de553..7d5c87b 100644
--- a/HelloStudents/HelloStudents.csproj
+++ b/HelloStudents/HelloStudents.csproj
@@ -54,6 +54,7 @@
+
diff --git a/HelloStudents/Program.cs b/HelloStudents/Program.cs
index 2e676e4..39b5309 100644
--- a/HelloStudents/Program.cs
+++ b/HelloStudents/Program.cs
@@ -88,6 +88,14 @@ static void Main(string[] args)
// 3201
// 3202
// 3203
+ students.Add(
+ new Student3203Kwon()
+ {
+ FirstName = "혜수",
+ LastName = "권",
+ StudentNumber = 3203,
+ BaseYear = 2021
+ });
// 3204
// 3205
// 3206
diff --git a/HelloStudents/Student3203Kwon.cs b/HelloStudents/Student3203Kwon.cs
new file mode 100644
index 0000000..685cdd7
--- /dev/null
+++ b/HelloStudents/Student3203Kwon.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace HelloStudents
+{
+ class Student3203Kwon : StudentBase
+ {
+ public override string Hello()
+ {
+ return this + "는 전설이다...............★☆";
+ }
+ }
+}