diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index d16bbbe..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,77 +0,0 @@
-# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
-# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
-
-# User-specific stuff
-.idea/**/workspace.xml
-.idea/**/tasks.xml
-.idea/**/usage.statistics.xml
-.idea/**/dictionaries
-.idea/**/shelf
-
-# AWS User-specific
-.idea/**/aws.xml
-
-# Generated files
-.idea/**/contentModel.xml
-
-# Sensitive or high-churn files
-.idea/**/dataSources/
-.idea/**/dataSources.ids
-.idea/**/dataSources.local.xml
-.idea/**/sqlDataSources.xml
-.idea/**/dynamic.xml
-.idea/**/uiDesigner.xml
-.idea/**/dbnavigator.xml
-
-# Gradle
-.idea/**/gradle.xml
-.idea/**/libraries
-
-# Gradle and Maven with auto-import
-# When using Gradle or Maven with auto-import, you should exclude module files,
-# since they will be recreated, and may cause churn. Uncomment if using
-# auto-import.
-# .idea/artifacts
-# .idea/compiler.xml
-# .idea/jarRepositories.xml
-# .idea/modules.xml
-# .idea/*.iml
-# .idea/modules
-# *.iml
-# *.ipr
-
-# CMake
-cmake-build-*/
-
-# Mongo Explorer plugin
-.idea/**/mongoSettings.xml
-
-# File-based project format
-*.iws
-
-# IntelliJ
-out/
-
-# mpeltonen/sbt-idea plugin
-.idea_modules/
-
-# JIRA plugin
-atlassian-ide-plugin.xml
-
-# Cursive Clojure plugin
-.idea/replstate.xml
-
-# SonarLint plugin
-.idea/sonarlint/
-
-# Crashlytics plugin (for Android Studio and IntelliJ)
-com_crashlytics_export_strings.xml
-crashlytics.properties
-crashlytics-build.properties
-fabric.properties
-
-# Editor-based Rest Client
-.idea/httpRequests
-
-# Android studio 3.1+ serialized cache file
-.idea/caches/build_file_checksums.ser
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 6e86672..6f29fee 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,5 +1,6 @@
+
-
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Java-Assignment-002.iml b/Java-Assignment-002.iml
index b46c0dd..e1006ff 100644
--- a/Java-Assignment-002.iml
+++ b/Java-Assignment-002.iml
@@ -5,6 +5,7 @@
+
\ No newline at end of file
diff --git a/out/production/Java-Assignment-002/.gitkeep b/out/production/Java-Assignment-002/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/out/production/Java-Assignment-002/Time.class b/out/production/Java-Assignment-002/Time.class
new file mode 100644
index 0000000..3a942a2
Binary files /dev/null and b/out/production/Java-Assignment-002/Time.class differ
diff --git a/src/Time.java b/src/Time.java
new file mode 100644
index 0000000..796af66
--- /dev/null
+++ b/src/Time.java
@@ -0,0 +1,28 @@
+
+public class Time {
+ public static void main(String[] args) {
+ int hour = 10;
+ int minute = 39;
+ int second = 43;
+ System.out.print("Number of seconds since midnight ");
+ System.out.println(second+hour*3600+minute*60);
+ int secondssincemidnight = (second + minute * 60 + hour * 3600);
+ int secondsinaday = (24 * 3600);
+ int secondsleft = (secondsinaday-secondssincemidnight);
+ System.out.print("seconds left until midnight ");
+ System.out.println(secondsleft);
+ double percentofday = (double) secondssincemidnight/secondsinaday*100;
+ System.out.print("Percentage of the day that has passed ");
+ System.out.println(percentofday);
+ int hour1 = 11;
+ int minute1 = 44;
+ int second1 = 55;
+ System.out.print("Time spent on this project ");
+ System.out.print(hour1-hour);
+ System.out.print(" Hours ");
+ System.out.print(minute1-minute);
+ System.out.print(" Minutes and ");
+ System.out.print(second1-second);
+ System.out.println(" Seconds ");
+ }
+}
\ No newline at end of file