/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ import java.util.*; public class Vaja14{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Vnesi stevilo: "); int a = sc.nextInt(); System.out.print("Vnesi drugo stevilo: "); int b = sc.nextInt(); if (a > b){ System.out.println("Max je "+a); } else { System.out.println("Max je "+b); } } }