Skip to content

Instantly share code, notes, and snippets.

@leehs99
Last active July 9, 2018 17:26
Show Gist options
  • Save leehs99/8b760cbe8c1ff44e82554c89e1c04909 to your computer and use it in GitHub Desktop.
Save leehs99/8b760cbe8c1ff44e82554c89e1c04909 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
//Object : A-B
//Name : Hyeon Soo Lee
//Email : 99leehs@naver.com
public class ex02 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
System.out.println(A-B);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment