Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created September 24, 2010 09:57
Show Gist options
  • Save qoelet/595147 to your computer and use it in GitHub Desktop.
Save qoelet/595147 to your computer and use it in GitHub Desktop.
public class SumTwo
{
public static void main(String[] args)
{
int a = 4;
int b = 5;
int result = a + b;
System.out.println(result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment