Square of a number Level 1, Lesson 8 public class Solution { public static void main(String[] args) { //write your code here int a = 5; int result = sqr(5); System.out.println (sqr(int a)); } public static int sqr(int a) { return a * a; } }