fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int X = 5;
  5. int Y;
  6.  
  7. Y = (2*X+1)*(2*X+1);
  8.  
  9. printf("X=%d\n",X);
  10. printf("Y=%d\n",Y);
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
X=5
Y=121