void setup() {
Serial.begin(115200);
// put your setup code here, to run once:
//
for(int i=0; i<10; i++) //цикл для змінної і якеий працює до 10000 з кроком 101
Serial.println(i*101);
}
void loop() {
// put your main code here, to run repeatedly:
}