diff --git a/9/Absolute Value.py b/9/Absolute Value.py
new file mode 100644
index 0000000..e21f334
--- /dev/null
+++ b/9/Absolute Value.py	
@@ -0,0 +1,5 @@
+x=int(input())
+if x < 0:
+   print(-x)
+else:
+   print(x)