fork(1) download
  1. #include<stdio.h>
  2. void react(int a,int b)
  3. {
  4. for(int i=0;i<b;i++)
  5. {
  6. printf("%d\n",a);
  7. }
  8. }
  9.  
  10. int main() {
  11. int v,n;
  12. scanf("%d%d", &v,&n);
  13. react(v,n);
  14. return 0;
  15. }
Success #stdin #stdout 0s 5480KB
stdin
135 0
stdout
Standard output is empty