Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save victorabraham/0e38b194d58eb7d1dc04 to your computer and use it in GitHub Desktop.
Save victorabraham/0e38b194d58eb7d1dc04 to your computer and use it in GitHub Desktop.
Java Samples
import java.util.Scanner;
public class Add{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
int c = a+b;
System.out.println(c);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment