提交时间:2024-07-30 22:25:12
运行 ID: 159750
# include <iostream> using namespace std ; bool isp ( long long x ) { if ( x < 2 ) { return false ; } if ( x == 2 ) { return true ; } for ( long long i = 2 ; i * i <= x ; i ++ ) { if ( x % i == 0 ) { cout << x / i << endl ; return false ; } } return true ; } int main ( ) { long long n ; cin >> n ; if ( isp ( n ) ) { ; } return 0 ; }