summaryrefslogtreecommitdiffstats
path: root/šola/p1/vaje/2023-10-12/Vsota2.java
blob: 7857cbc64127c8c2480e5656af3d5ece37a71500 (plain) (blame)
1
2
3
4
5
6
7
8
9
import java.util.*;
public class Vsota2 {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		System.out.println(a + " + " + b + " = " + (a+b));
	}
}