fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int n=13;
  5. int ans=0;
  6. for(int d=1;d<n;d++){
  7. if(n%d==1){
  8. ans+=d;
  9. }
  10. }
  11. return ans;
  12. }
Runtime error #stdin #stdout 0s 2152KB
stdin
Standard input is empty
stdout
Standard output is empty