#include using namespace std; using Int = long long; int main(){ int N,M; cin >> N >> M; cout << max(N-M,0) << endl; }