/*
 * 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 czyWzgledniePierwsze(int a, int b){
        if (a%2 == 0 && b%2 == 0)
            System.out.print("Liczby a i b są parzyste");
        else
            System.out.print("Przynajmniej jedna z liczb nie jest parzysta");
        return 1;
    };
    public static void main(String[] args) {
        int a = 11;
        int b = 6;
        czyWzgledniePierwsze(a,b);
    }
}
