fork(1) download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a, b;
  5. float x, y;
  6. char c1, c2;
  7. scanf("a=%d b=%d",&a,&b);
  8. scanf(" %f %e",&x,&y);
  9. scanf(" %c, %c",&c1,&c2);
  10. return 0;
  11. }
Success #stdin #stdout 0s 5280KB
stdin
3 7
8.5 71.82
A,a
stdout
Standard output is empty