Integer1. Given the distance L in centimeters. Using the operation of integer division, find the number of full meters in it (1 meter = 100 cm).

Solution in Python 3:

L = int(input("Enter the distance in centimeters (L): "))
m = int(L / 100)
print("Number of full meters: ", m)

Solution in C++:

#include<iostream>
using namespace std;
int main(){
int l, m;
cout << "Enter the distance in centimeters (L): ";
cin >> l;
m = int(l/100);
cout << "Number of full meters: " << m;
return 0;
}