Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 711 Bytes

README.md

File metadata and controls

34 lines (30 loc) · 711 Bytes

nothing

  • 👋 Hi, I'm @wzpjk2013
  • 👀 I'm interested in ...
  • 🌱 I'm currently learning ...
  • 💞️ I'm looking to collaborate on ...
  • 📫 How to reach me ...

(上面的都不重要) 最重要的是我不是傻逼!

code

C++

#include<bits/stdc++.h>
using namespace std;
const int n=100001;
int main(){
	for(int i=1;i<=n;i++){
		printf("我不是傻逼");
	}
	return 0;
}

Python

if __name__=="__main__":
	N=100001
	for _ in range(N):
		print('我不是傻逼',end='')