/*
Génesis M Ojeda Rosa
COMP 3800
lenguaje COMP
Conversión de dólares a pesos colombianos
*/
//imports library
#include <stdio.h>
//defines constants
#define COLOMBIAN_DOLLARS 4215
int main() {
double us_dollars, colombian_dollars;
printf("Enter USD amount to convert: ");
scanf("%lf", &us_dollars);
colombian_dollars = COLOMBIAN_DOLLARS * us_dollars;
printf("%.2f USD is %.2f Colombian Pesos.\n", us_dollars, colombian_dollars);
return 0;
}