/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.mycompany.ore;

/**
 *
 * @author szymc
 */
public class Main {
    static int length(String a){
        int dlugosc = 0;
        
        for (char znak : a.toCharArray()) {
            dlugosc++;
        }
        return dlugosc;
    };
    public static void main(String[] args) {
        String a = "ALA MA KOTA";
        System.out.print(length(a));
    }
}
