#include <iostream>
#include <string>
using namespace std;
int main()
{
int number1 = 10;
double number2 = 67.8;
string no_str1 = to_string(number1);
string no_str2 = to_string(number2);
//넘버는 숫자라서 사칙연산이된다.
cout << "number1 : " << number1 + 10 << endl;
cout << "number2 : " << number2 + 10 << endl;
//문자열로 바뀌면 숫자로이루어진 문자열이 되므로 사칙연산시 에러가난다
cout << "no_str1 : " << no_str1 << endl;
cout << "no_str2 : " << no_str2 << endl;
return 0;
}