#include int main(void){ int price; char key; price = 80; key = 'a'; printf("%d\n", price); printf("%c\n", key); return 0; }