It would be a lot easier if you would add an explanation to your code, besides only the title "How can I fix this code?".
What is the code supposed to do? What is the problem - do you get a compiler error, or an error when you try to run it? Or does it run, but produce output that is different from what you expected? If that's the case, then what exactly did you expect, what does it do in reality and how does that differ from what you expected?
Just by looking at it I can already see an error in the very first line: you are trying to import a class named Sec from the package java.util, but that package does not contain a class named Sec. What was your intention with that line? You're not using the class Sec in the code, so it seems redundant.
There are more errors. For example,
String Map<String, String> in line 9 and
nre HashMap in line 12, and
i+=2> in line 16. You'll need to fix those syntax errors first.