2.Addition of two numbers in C,Java,&Python

 

SecPro.java


 java.util.*;


public class Main {

    public static void main(String[] args) {

     int a=10;

     int b=20;

     int c=a + b;

     System.out.print(c);

  }

}


Output


30


SecPro.py


a=10;

b=20;

print(a+b)


Output

30


SecPro.c


#include <stdio.h>

int main()

{

  int a=10,b=20,c;

  c=a+b;

  printf("addition of two numbers is%d",c);

}


Output:

addition of two numbers is:30

Validate Aadhaar

  Aadhaar Website link: https://myaadhaar.uidai.gov.in/ Validate Aadhaar: To know which Mobile(XXXXX XX123) Number is linked to your Aadhaar...