👉 Calque, in mathematics and computer science, refers to a specific type of algorithm or program that performs the same operation on all instances of its input data. This means that if you run this program on different inputs, it will produce the same output. For example, consider the following Python function: ```python def add_numbers(a, b): return a + b numbers = [1, 2, 3] print(add_numbers(numbers[0], numbers[1])) #