diff --git a/skoolos.py b/skoolos.py
index f335dfe..2003e6b 100644
--- a/skoolos.py
+++ b/skoolos.py
@@ -230,7 +230,9 @@ def teacherCLI(user, password):
             ]
             ass = prompt(questions)['assignment']
             apath = teacher.username + "/" + course + "/" + ass
-            
+            due = input("Enter due date (Example: 2020-08-11 16:58): ")
+            due = due +  ":00.000000"
+            due = due.strip()
             teacher.addAssignment(apath, course, due)