请问还有比5行更少的代码吗?

B2001 入门测试题目

一行:(python) ```python n = input().split();print(int(n[0]) + int(n[1])) ```
by hzy142857 @ 2024-05-03 19:09:56


@_@
by 4041nofoundGeoge @ 2024-05-05 11:00:25


```cpp #include <iostream> int main(){long long a,b;std::cin>>a>>b;std::cout<<a+b;} ```
by GavinWu_qwq @ 2024-05-06 18:39:57


秒了 ``` #include<bits/stdc++.h> using namespace std;int main(){ long long a,b;cin>>a>>b;cout<<a+b;return 0;} ```
by Liuhaoran8219 @ 2024-05-14 17:47:21


$(O∪O)$
by 4041nofoundGeoge @ 2024-05-19 13:40:51


c,已经尽力了 ```c #include"stdio.h" main(){long a,b;scanf("%ld%ld",&a,&b),printf("%ld",a+b);} ```
by FakzianQwQ @ 2024-05-24 13:35:45


```cpp #include <bits/stdc++.h> int main(){using namespace std;long int a,b;cin>>a>>b;cout<<a+b;} ``` 最少字符
by zhongjiarun666 @ 2024-05-30 20:50:31


```cpp #include<iostream> int main(){long long a,b;std::cin>>a>>b;std::cout<<a+b;} ``` 两行
by hnxx123456 @ 2024-06-02 12:58:38


``` #include<bits/stdc++.h> using namespace std;int main () {long long a, b;cin>>a>>b;cout<<a+b;return 0;} ```
by Demfoqzil_Fly @ 2024-07-06 08:05:14


```c++ #include <stdio.h> main(){int a, b;scanf("%d%d", &a, &b);printf("%d", a + b);} ```
by weiyihao @ 2024-07-23 19:16:55


上一页 | 下一页