#include <iostream>
#include <climits>

using namespace std;

int main() {
    const int size = 10;
        char name[size];
        char old[size];
        char high[size];

    cin >> name;
    cin >> old;
    cin >> high;

    cout <<"이름: "<<name <<"\n"<<"나이: "<< old <<"\n"<<"키: "<< high <<endl;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: