fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a, b;
  5. printf("Enter Two Numbers:\n");
  6. scanf("%d%d", &a, &b);
  7.  
  8. printf("%d * %d = %lld", a, b, 1ll * a * b);
  9. }
Success #stdin #stdout 0s 5296KB
stdin
12 10
stdout
Enter Two Numbers:
12 * 10 = 120