#include #include #include int main() { int grams, pounds, ounces; printf("Enter number of grams: "); scanf("%d", &grams); /* BEGIN ANSWER -- do not delete this line */ /* END ANSWER -- do not delete this line */ printf("This equals %d pounds and %d ounces.\n", pounds, ounces); return EXIT_SUCCESS; }