#include <iostream>
#include <cstdlib>

using namespace std;

int main()
{
    float USD;
    float NTD;
    float EX=33.23f;
    int n;
     
    cout << "目前匯率 1USD=33.23*NTD" << endl;
    cout << "請輸入你要換算的美元數：";
    cin >> n;
    cout << "這是你輸入的美元數：" << n << endl;
    
    USD=n*NTD*EX;
    
    cout << "這是換算出來的台幣數：" << float(USD) << endl;
     
    
    system("pause");
    return 0;  
}