2 solutions

  • 0
    @ 2024-10-6 19:34:23

    #include<stdio.h> int main() { long long A,B; scanf("%lld %lld",&A,&B); printf("lld",A*B); return 0; }

    • 0
      @ 2023-9-30 13:48:52
      #include<iostream>
      using namespace std;
      #define ll long long
      int main()
      {
      	ll a,b,ans;
      	cin>>a>>b;
      	ans=a*b;
      	cout<<ans;
      	return 0;
      }
      
      • 1

      Information

      ID
      6728
      Time
      1000ms
      Memory
      128MiB
      Difficulty
      7
      Tags
      (None)
      # Submissions
      390
      Accepted
      97
      Uploaded By