提交时间:2026-03-06 19:47:38

运行 ID: 430949

#include<bits/stdc++.h> using namespace std; int main(){ int a,t=1; cin>>a; for(int i=2;i<=a-1;i++) { if(a%i==0) { t=0; } } if(t==0) { cout<<"F"; } else { cout<<"T"; } return 0; }