Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7001 - 2 тооны нийлбэр |
Өгөгдсөн бүхэл тооны нийлбэрийг ол.
Input
2 бүхэл тоо зайгаар тусгаарлагдан нэг мөрөнд өгөгдөнө.
Output
2 тооны нийлбэр.
Example
Input: 12 23 Output: 35
Нэмсэн: | Bataa |
Огноо: | 2011-01-15 |
Хугацааны хязгаарлалт: | 1s |
Эх кодын хэмжээний хязгаарлалт: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Програмчлалын хэлүүд: | ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE |
hide comments
|
||||||||||||||
2024-05-22 10:14:57
nuh uh Last edit: 2024-05-22 10:15:29 |
||||||||||||||
2024-05-21 14:02:11
#include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b; c=a + b; cout << c; return 0; } (C++ Language) |
||||||||||||||
2024-05-19 07:20:46
a,b=list(map(int,input().split())) print(a+b) pyton shu |
||||||||||||||
2024-05-10 04:28:25
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,i,s=1; scanf("%d %d",&a,&b); for(i=1;i<=b;i++) { s=s*a; printf("%d^%d=%d\n",a,i,s); } return 0; } |
||||||||||||||
2024-05-07 11:39:07
let a = Number(prompt("ehnii toog oruulna uu")) let b = Number(prompt("hoyr dahi toog oruulna uu")) console.log(a + b) |
||||||||||||||
2024-05-06 08:42:15
https://skribbl.io/?dHCkNt6t |
||||||||||||||
2024-05-06 08:41:08
https://skribbl.io/?dHCwLxov |
||||||||||||||
2024-04-11 02:51:36
#include <bits/stdc++.h> using namespace std; int main () { int a,b,c; cin>>a; cin>>b; c=a+b; cout << c << endl; return 0; } huul |
||||||||||||||
2024-03-28 05:27:52
#include <bits/stdc++.h> using namespace std; struct suragch{ int age; double gpa; string code,name; string gender; }; int main(){ int n; int p=0,h=0,q=0; cin>>n; suragch s[n]; for(int i=0;i<n;i++){ cin>> s[i].code >> s[i].age >> s[i].gpa >> s[i].gender; } for(int i=0;i<n;i++){ if ( s[i].gender=="male"){ p++; } else { h++; } } cout<<"male"<<p<<";"; cout<<"female"<<h<<";"; for (int i=0;i<n;i++){ if (s[i].gpa>2.5){ q++; } } cout<<"2.5 aas ih gpa tei suragch"<<" "<<q<<endl; return 0; } |
||||||||||||||
2024-03-04 10:40:19
Take it easy #include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b; return 0; } |