You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
159 B

2 years ago
  1. pragma circom 2.0.0;
  2. template Multiplier2() {
  3. signal input a;
  4. signal input b;
  5. signal output c;
  6. c <== a*b;
  7. }
  8. component main = Multiplier2();