#include int main(void){ int price; price = 80; printf("%d\n", price); price = 120; printf("%d\n", price); return 0; }