1 solutions

  • 0
    @ 2025-11-5 20:10:39

    C :

    #include<stdio.h>
    
    int main()
    {
    	int a,b,c,d,e;
    	a=123;
    	b=123456;
    	c=321;
    	d=13579;
    	e=a*b-c*d;
    	printf("%d\n",e);
    	return 0;
    }
    

    C++ :

    #include<stdio.h>
    
    int main()
    {
    	int a,b,c,d,e;
    	a=123;
    	b=123456;
    	c=321;
    	d=13579;
    	e=a*b-c*d;
        printf("%d",e);
    	return 0;
    }
    

    Pascal :

    begin
      writeln(123*123456-321*13579);
    end. 
    
    • 1

    Information

    ID
    20094
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By