now what i have 2 do i tried all methods but i'm not able to get answer plz help me to get answer.
package com.codegym.task.task01.task0128;
/*
As simple as 2+2
*/
public class Solution {
public static void main(String[] args) {
//write your code here
int a = 2;
int b = 2;
}
public static void sum(int a, int b) {
int c = 2 + 2;
System.out.println(c);
}
}