public class Add{ public static void main(String[] args) { int a,b,c; a=12; b=34; c=45; System.out.println(a+b+c); } }