Generation

generate functionFri, 07 Apr 2023

create bot telegram

#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int t; cin >> t; while(t--){ int n; cin >> n; int ans = 0; for(int i = 1; i <= n / 2; i++){ if(n % i == 0) ans++; } cout << ans << endl; } return 0; }

Want to kickstart your project?Use the new AI Studio to create your code