what is wrong with my code??
package com.codegym.task.task01.task0127;
/*
Square of a number
*/
public class Solution {
public static void main(String[] args) {
//write your code here
int b;
b=sqr(5);
System.out.println("the square of number is" + b);
}
public static int sqr(int a) {
return a * a;
}
}