Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void) {
- int banana_cost,number_of_banana,product;
- scanf("%d %d",&banana_cost,&number_of_banana);
- product=banana_cost*number_of_banana;
- printf("product of the amount of banana is %d\n",product);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment