What did i code wrong
Argentina +10 XP You are in a hat store in Argentina! The prices are listed in US Dollars and Argentinian Pesos. You have both, but you want to make sure you pay the lower price! Do you pay in Dollars or Pesos? The exchange rate is 2 cents for every Peso. Task Create a program that takes two prices and tells you which one is lower after conversion. Input Format Two integer values, the first one is the price in Pesos and the second one is the price in Dollars. Output Format A string that says which currency you should make the purchase in ('Dollars' or 'Pesos'). Sample Input 4000 100 Sample Output Pesos Iwrote the below code for the question above but 2 test cases came out wrong can anybody point me my problem #include<iostream> using namespace std; int main() { float f = 0.2; int Pesos; int Dollars; int c = Pesos*f; cin>>Pesos>>Dollars; if(c<Dollars){ cout<<"Pesos"<<endl; } else{ cout<<"Dollars"; } return 0; }