Showing posts with label sum two numbers in java. Show all posts
Showing posts with label sum two numbers in java. Show all posts

Wednesday, October 30, 2013

1.02 - Sum two numbers

/*
/*
 * Autor: Juan Antonio Ripoll
 * Date: 30/10/13
 * 
 * Write a JAVA program to print the result of 
 * adding 12 and 13 on screen.  
 * */

public class Main {

 public static void main(String[] args) {
  System.out.println(12+13);
 }

}