Nobita and Profit
import java.io.*; // for handling input/output
import java.util.*; // contains Collections framework
// don't change the name of this class
// you can add inner classes if needed
class Main {
public static void main (String[] args) {
Scanner sc=new Scanner(System.in);
int c=sc.nextInt();
int s=sc.nextInt();
System.out.println(s-c);
}
}