diff --git a/cards.txt b/cards.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b88b29a3884ebf2c28c878a54fb96b9ed8bdb2e2
--- /dev/null
+++ b/cards.txt
@@ -0,0 +1,5 @@
+5123  456 7 891 01 112
+4789 2784 8910 8290
+54 1929331 83917
+4 789087089 087098
+5  192 929 59182 8818
diff --git a/script/AnotherPrinter.java b/script/AnotherPrinter.java
new file mode 100644
index 0000000000000000000000000000000000000000..fcbd77dc2d5a171a30ca1896d4936794b2038f9a
--- /dev/null
+++ b/script/AnotherPrinter.java
@@ -0,0 +1,5 @@
+public class AnotherPrinter {
+    public static void main(String[] args) {
+        System.out.println("I love faang!");
+    }
+}
diff --git a/script/Printer.java b/script/Printer.java
new file mode 100644
index 0000000000000000000000000000000000000000..b118b6282b5636d301e323965c127cd29890a374
--- /dev/null
+++ b/script/Printer.java
@@ -0,0 +1,7 @@
+public class Printer {
+    public static void main(String[] args) {
+        for (int i = 0; i < 10; i++) {
+            System.out.println("faang is the best company ever!!");
+        }
+    }
+}
diff --git a/script/subdir/YetAnotherPrinter.java b/script/subdir/YetAnotherPrinter.java
new file mode 100644
index 0000000000000000000000000000000000000000..07b2f4d69c64320aedd6987f50156efab4098e78
--- /dev/null
+++ b/script/subdir/YetAnotherPrinter.java
@@ -0,0 +1,8 @@
+public class YetAnotherPrinter {
+    public static void main(String[] args) {
+        String i = "I ";
+        String l = "love ";
+        String f = "faang faang";
+        System.out.println(i + l + f);
+    }
+}
diff --git a/task1.sh b/task1.sh
new file mode 100644
index 0000000000000000000000000000000000000000..d32ed5f21e1443bf760888984f2d90e70ea908f2
--- /dev/null
+++ b/task1.sh
@@ -0,0 +1,53 @@
+#!/bin/bash
+
+####################################
+# Name: <Your name here>
+# CSE 391 - Winter 2021
+# Homework 7 - Task 1
+####################################
+
+function problem1 {
+  # Type your answer to problem #1 below this line
+  echo "not yet implemented"
+}
+
+function problem2 {
+  # Type your answer to problem #2 below this line
+  echo "not yet implemented"
+}
+
+function problem3 {
+  # Type your answer to problem #3 below this line
+  echo "not yet implemented"
+}
+
+function problem4 {
+  # Type your answer to problem #4 below this line
+  echo "not yet implemented"
+}
+
+function problem5 {
+  # Type your answer to problem #5 below this line
+  echo "not yet implemented"
+}
+
+function problem6 {
+  # Type your answer to problem #6 below this line
+  echo "not yet implemented"
+}
+
+function problem7 {
+  # Type your answer to problem #7 below this line
+  echo "not yet implemented"
+}
+
+function problem8 {
+  # Type your answer to problem #8 below this line
+  echo "not yet implemented"
+}
+
+function problem9 {
+  # Type your answer to problem #9 below this line
+  echo "not yet implemented"
+}
+