#46137: yeah so ezezezezezez


1121226@stu.wghs.tp.edu.tw (Arthur✨EC)


#include <bits/stdc++.h>
using namespace std;
int main() {
    int m,n; // 根據題目,定義兩個變數
    // m:代表社團的總人數
    // n:有到的人數
    cin>>m>>n;
    cout<<m-n; // 輸出沒到的社員數量
    return 0;
}