//////////////////#include <iostream>
//////////////////
//////////////////using namespace std;
//////////////////
//////////////////int main()
//////////////////{
////////////////// cout << "Hello world!" << endl;
////////////////// return 0;
//////////////////}
////////////////
////////////////#include <iostream>
////////////////using namespace std;
////////////////class Point{
////////////////int x,y;
////////////////public:
//////////////// void sett(int x,int y) { this->x=x; this->y=y; }
//////////////// void show() { cout << "(" << x << ',' << y << ")" << endl; }
////////////////};
////////////////class ColorPoint : public Point
////////////////{
//////////////// string color;
////////////////public:
//////////////// void setc(string color) { this->color=color; }
//////////////// void show1();
////////////////};
////////////////void ColorPoint::show1() {
////////////////cout << color << ": ";
////////////////show();
////////////////}
////////////////int main()
////////////////{
//////////////// Point o;
//////////////// ColorPoint cp;
//////////////// cp.sett(3,4);
//////////////// cp.setc("red");
//////////////// cp.show1();
////////////////}
//////////////
//////////////#include <iostream>
//////////////using namespace std;
//////////////class Point{
//////////////protected:
//////////////int x,y;
//////////////
//////////////public:
//////////////
////////////// void sett(int x,int y) { this->x=x; this->y=y; }
////////////// void show() { cout << "(" << x << ',' << y << ")" << endl; }
//////////////};
//////////////class Cpoint : public Point {
//////////////string color;
//////////////public:
////////////// void setc(string color) { this->color=color; }
////////////// void show1();
////////////// bool equals(Cpoint p);
//////////////};
//////////////void Cpoint::show1()
//////////////{
////////////// cout << color << " : ";
////////////// show();
//////////////}
//////////////bool Cpoint::equals(Cpoint p)
//////////////{
////////////// if(x==p.x && y == p.y && color == p.color)
////////////// return true;
////////////// else return false;
//////////////}
//////////////int main()
//////////////{
////////////// Point p;
////////////// p.sett(2,3);
////////////// p.x = 5;
////////////// p.y = 5;
////////////// p.show();
//////////////
////////////// Cpoint cp;
////////////// cp.x = 10;
////////////// cp.y = 10;
////////////// cp.sett(3,4);
////////////// cp.setc("red");
//////////////
////////////// Cpoint cp2;
////////////// cp2.sett(3,4);
////////////// cp2.setc("red");
////////////// cout << ((cp.equals(cp2))?"true":"false");
//////////////}
////////////
////////////#include <iostream>
////////////#include <string>
////////////using namespace std;
////////////class TV{
////////////int size;
////////////public:
//////////// TV() { size = 20; }
//////////// TV(int size) { this->size=size; }
//////////// int getsize() { return size; }
////////////};
////////////class wideTV : public TV{
////////////bool videoIn;
////////////public:
//////////// wideTV(int size, bool videoIn) : TV(size)
//////////// {
//////////// this->videoIn=videoIn;
//////////// }-+
////////////
//////////// bool getVideoin() { return videoIn; }
////////////};
////////////class SmartTV : public wideTV{
////////////string ipaddr;
////////////public:
//////////// SmartTV(string ipaddr,int size) : wideTV(size,true)
//////////// {
//////////// this->ipaddr = ipaddr;
//////////// }
//////////// string getip() { return ipaddr; }
////////////};
////////////int main()
////////////{
//////////// SmartTV htv("192.0.01",32);
//////////// cout << "size= " << htv.getsize() << endl;
//////////// cout << "videoIn= " << boolalpha <<htv.getVideoin() << endl;
//////////// cout << "IP= " << htv.getip() << endl;
////////////}
//////////
//////////#include <iostream>
//////////using namespace std;
//////////class A{
//////////
//////////public:
////////// int x;
////////// A() { x = 0;}
////////// A(int x) { this->x=x; }
//////////};
//////////class B : public A{
//////////public:
////////// int y;
////////// B(int x,int y) : A(x+5) { this->y=y; }
////////// void show1() { cout << x << ' ' << y << endl; }
//////////};
//////////class C : public B{
//////////
//////////public:
////////// int m;
////////// C(int x,int y,int z) : B(x,y+100) { m = x*y*z; }
////////// void show() { cout << x << ' ' << y << ' ' << m << endl; }
//////////};
//////////int main()
//////////{
////////// C c(3,5,2);
////////// B b(3,4);
////////// b.show1();
////////// c.show();
//////////}
////////
////////#include <iostream>
////////using namespace std;
////////class Base
////////{
////////protected:
//////// void setA(int a)
//////// {
//////// this->a=a;
//////// }
////////public:
//////// int a;
//////// void showB()
//////// {
//////// cout << a;
//////// }
////////};
////////class D : public Base
////////{
////////protected:
//////// void setB(int b)
//////// {
//////// this->b=b;
//////// }
////////public:
//////// int b;
//////// void showA()
//////// {
//////// cout << b;
//////// }
////////};
////////int main()
////////{
//////// D x;
//////// x.a = 5;
//////// x.setA(10);
//////// x.showB();
//////// x.b = 10;
//////// x.setB(10);
//////// x.showA();
////////}
////////
//////////////////////////////////////식 입력하면 답나오는거(이항 연산)
//////#include <iostream>
//////using namespace std;
//////class Adder{
//////protected:
////// int add(int a,int b) { return a+b; }
//////};
//////class Sub{
//////protected:
////// int minus(int a,int b) { return a-b; }
//////};
//////class Calcul : public Adder, public Sub{
//////public:
////// int calc(char op, int a, int b);
//////};
//////int Calcul::calc(char op, int a, int b)
//////{
////// int res=0;
////// switch(op) {
////// case '+' : res = add(a,b); break;
////// case '-' : res = minus(a,b); break;
////// }
////// return res;
//////}
//////int main()
//////{
////// Calcul hand;
////// int num1=0,num2=0;
////// char hangul=' ';
////// cin >> num1 >> hangul >> num2;
////// cout << num1 << hangul << num2 << '=' << hand.calc('+',2,4) << endl;
////// //cout << "100 - 8 = " << hand.calc('-',100,8) << endl;
//////}
///////////////////////////////////////////1번
////#include <iostream>
////using namespace std;
////class Circle{
////
////public:
//// int radius=0;
//// Circle(int radius=0) { this->radius=radius;}
//// int getR() { return radius; }
//// void setR(int radius) { this->radius=radius; }
//// double getA() { return 3.14*radius*radius; }
//// void show1() { cout << "반지름이 " << radius << "인 "; }
////};
////class NameC : public Circle{
////string name=" ";
////public:
//// NameC(int radius,string name) { this->radius=radius; this->name=name; }
//// void show()
//// {
//// show1();
//// cout << name << endl;
//// }
////};
////int main()
////{
//// NameC waffle(3,"waffle");
//// waffle.show();
////}
////
//#include <iostream>
//using namespace std;
//class Circle{
//int radius=0;
//public:
//
// Circle(int radius=0) { this->radius=radius;}
// int getR() { return radius; }
// void setR(int radius) { this->radius=radius; }
// double getA() { return 3.14*radius*radius; }
//};
//class namedC : public Circle{
//
//};
//int main()
//{
// int pizza[5];
// for(int i=0;i<5;i++)
// {
// cin >> pizza[i];
// }
//}
#include <iostream>
using namespace std;
int main()
{
int pizza;
string name;
cout << "5개의 정수 반지름과 원의 이름을 입력하세요" << endl;
for(int i=1;i<=5;i++)
{
cout << i << ">> ";
cin >> pizza >> name;
}
}



