The standard calculator that comes with Windows shows the incorrect answer, while the Scientific one (same app) is correct. More info:
Different calculators follow different orders of operations. Many simple calculators without a stack implement chain input working left to right without any priority given to different operators, for example typing
1 + 2 × 3 yields 9,
while more sophisticated calculators will use a more standard priority, for example typing
1 + 2 × 3 yields 7.