#40412: 7011424534534345343


11250008@stu.chjh.tp.edu.tw (1120108劉云蓁)


#include <iostream>

using namespace std;

int main()
{

    float a,b;
    char c;
    cin>>a>>c>>b;
    switch(c)

    {
       case '+':
    cout<< a+b <<endl;
    break;
    case '-':
    cout<< a-b <<endl;
    break;
    case '*':
    cout<< a*b <<endl;
    break;
    case '/':
    cout<< a/b <<endl;
    break;
    }

    return 0;
}