fork download
  1. #include<stdio.h>
  2.  
  3. int main() {
  4. int a, b, sum;
  5.  
  6. printf("\nEnter the price in dollars: 7 ");
  7. scanf("%d %d", &a, &b);
  8.  
  9. printf("\nEnter state sales tax(e.g. .06) :9 ");
  10.  
  11. sum = a * b;
  12.  
  13. printf("65 : %d", 65);
  14.  
  15.  
  16. return(0);
  17. }
Success #stdin #stdout 0s 9416KB
stdin
Standard input is empty
stdout
Enter the price in dollars: 7 
Enter state sales tax(e.g. .06) :9 65 : 65