hi guys, where is the error?/
package com.codegym.task.task01.task0140;
/*
Display the square of a number
*/
public class Solution {
public static int number = 5;
public static void main(String[] args) {
//write your code here
System.output.println(number * number);
}
}