You are on page 1of 2

Department of Electronics and Communication

Indus Institute of Engineering and Technology


B.Tech (ICT) Semester-2
Programming in C (ICT0202)

Khatri Sameer Date:-


IU2241240021

Program No: 1

Title of the Program: Write a JAVA program for Addition of Two Integers

Code:

public class addinginteger{


public static void main(String[] args) {
int a = 5;
int b = 7;
int sum = a +b ;
System.out.println("The sum of " + a + " and " +b + " is: " + sum);
}
}

Output:
The sum of 5 and 7 is: 12

Signature of Faculty
Department of Electronics and Communication
Indus Institute of Engineering and Technology
B.Tech (ICT) Semester-2
Programming in C (ICT0202)

Signature of Faculty

You might also like