1 solutions

  • 0
    @ 2025-11-5 17:30:47

    C++ :

    #include<bits/stdc++.h>
    using namespace std;
    long long a,b;
    int main()
    {
    	cin>>a>>b;
    	cout<<a+b;
    	
    	return 0;
    } 
    

    Pascal :

    program ex1;
    var
     a,b,c:longint;
    begin
      readln(a,b);
      c:=a+b;
      writeln(c);
    end.
    
    • 1

    Information

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