View Code of Problem 1

public class Main{
  public static void main(String args[]){
    int a = 1;
    int b = 1;
    int c = a+b;
    System.out.println(c);
  }
}

Double click to view unformatted code.


Back to problem 1