Untitled

 avatar
unknown
plain_text
4 years ago
270 B
106
Indexable
import java.util.Scanner;


public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in); 
		
		int a = sc.nextInt();  
		int b = sc.nextInt();  
		
		System.out.println(Math.max(Math.abs(a), Math.abs(b)));
		
	}
}
Editor is loading...