aboutsummaryrefslogtreecommitdiff
path: root/test/java/square/input.java
blob: ab3b236ef1ce41632091e43090d5121916fcd427 (plain)
1
2
3
4
5
6
// Type your code here, or load an example.
class Square {
    static int square(int num) {
        return num * num;
    }
}