i already put sum(2,2);
and still not working omg why it works on others
package com.codegym.task.task01.task0128;
/*
As simple as 2+2
*/
public class Solution {
public static void main(String[] args) {
System.out.println(2+2);
}
public static void sum(int a, int b) {
int c = a + b;
System.out.print(c);
}
}