str msg = " damage inflicted!\n"
int AT = 14;
int accuracy = 150;
int dmg = ((AT * accuracy) / 20) - 3;
print(dmg as str);
print(msg);