#include<iostream> using namespace std; int main() { int wallet; int price; cin >> wallet >> price; cout << wallet-price << endl; return 0; }