diff --git a/Hackerrank/java-currency-formatter.java b/Hackerrank/java-currency-formatter.java
new file mode 100644
index 00000000..52de9a5b
--- /dev/null
+++ b/Hackerrank/java-currency-formatter.java
@@ -0,0 +1,30 @@
+import java.util.*;
+import java.text.*;
+
+
+// Problem: Compare the Triplets
+// URL:https://www.hackerrank.com/challenges/java-currency-formatter/problem?isFullScreen=true
+// Language: Java
+
+
+public class Solution {
+
+ public static void main(String[] args) {
+ Scanner scanner = new Scanner(System.in);
+ double payment = scanner.nextDouble();
+ scanner.close();
+
+ // Write your code here.
+ String us = NumberFormat.getCurrencyInstance(Locale.US).format(payment);
+ String india = NumberFormat.getCurrencyInstance(new Locale("en","in")).format(payment);
+ String china = NumberFormat.getCurrencyInstance(Locale.CHINA).format(payment);
+ String france = NumberFormat.getCurrencyInstance(Locale.FRANCE).format(payment);
+
+ System.out.println("US: " + us);
+ System.out.println("India: " + india);
+ System.out.println("China: " + china);
+ System.out.println("France: " + france);
+
+ scanner.close();
+ }
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index 791a2e2c..d02af0f7 100644
--- a/README.md
+++ b/README.md
@@ -102,6 +102,9 @@ In this repository, you can find the solutions (as source code) for the problems
| [Nauman Chaudhary](https://github.com/nauman-chaudhary)
| Pakistan | Python | |
| [Gourav Rusiya](https://github.com/GouravRusiya30)
| India | Java | https://www.hackerrank.com/gouravrusiya786 |
| [Trushita Maurya](https://github.com/trushita23)
| India | Java
+
+| [Ayan Ajmeri](https://github.com/Ayanajmeri924)
| India | Java |
+
### License
[](https://github.com/ows-ali/Hacktoberfest/blob/master/LICENSE)