[ This is my code, I check it on Eclipse (The program I use to code) it works. However, I submitted here it doesn't work.][Here is the problem question](http://codeforces.net/contest/677/problem/A) ~~~~~ import java.util.Scanner;
public class AntonandDanik {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Scanner string = new Scanner(System.in);
int noGames= input.nextInt();
String name = string.nextLine();//name.length()
name=name.toUpperCase();
int countA=0;
int countD=0;
char winner;
for (int i=0; i<noGames;i++){
winner= name.charAt(i);
if (winner == 'A')
countA++;
else if (winner == 'D')
countD++;
}
if (countA > countD)
System.out.println("Anton");
else if (countA < countD)
System.out.println("Danik");
else if (countA == countD)
System.out.println("FriendShip");
}
} ~~~~~