Tester

public class Tester {
  public static void main(String[] args) {
           int x = 6;
           String type = "positive";
           if ( Math.abs(x)  != x )
                 type = "negative";
           System.out.print( type );
  }
}
 
What is the output?
Be careful of the space/newline in your answer.