So if I have lets say 4 integers:
int a = 50000 , int b = 5000000 , int c = 100 , int d = 500
Now what I wanted to run is b - a And c - d.
my question is would b-a run slightly slower than c - d or they would be executed in the exact same speed by the processor?