diff --git a/HelloStudents/HelloStudents.csproj b/HelloStudents/HelloStudents.csproj
index 23de553..663f786 100644
--- a/HelloStudents/HelloStudents.csproj
+++ b/HelloStudents/HelloStudents.csproj
@@ -54,7 +54,7 @@
-
+
diff --git a/HelloStudents/Program.cs b/HelloStudents/Program.cs
index 2e676e4..9039946 100644
--- a/HelloStudents/Program.cs
+++ b/HelloStudents/Program.cs
@@ -100,6 +100,16 @@ static void Main(string[] args)
// 3213
// 3214
// 3215
+ // 3216
+ students.Add(
+ new Student3216Han() {
+ FirstName = "나래",
+ LastName = "한",
+ StudentNumber = 3216,
+ BaseYear = 2021
+
+ });
+
// 3217
// 3218
// 3219
diff --git a/HelloStudents/Student3216Han.cs b/HelloStudents/Student3216Han.cs
new file mode 100644
index 0000000..cdf284a
--- /dev/null
+++ b/HelloStudents/Student3216Han.cs
@@ -0,0 +1,13 @@
+using System.Text;
+using System.Threading.Tasks;
+
+namespace HelloStudents
+{
+ class Student3216Han : StudentBase
+ {
+ public override string Hello()
+ {
+ return "무야호~ 나는 " + this + "입니다.";
+ }
+ }
+}