fork download
  1. #include<stdio.h>
  2. int main(){
  3. int i,j,m,n,x;
  4. for(i=2;i<=168/2;i++){
  5. if(168/i==0){
  6. j=168/i;
  7. m=(i+j)/2;
  8. n=(i-j)/2;
  9. x=n*n-100;
  10. printf("%d",x);
  11. }
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 5260KB
stdin
1
stdout
Standard output is empty