View difference between Paste ID: DnF3b6JA and z4rvuxcr
SHOW: | | - or go back to the newest paste.
1
#include<stdio.h>
2
3
int main() {
4
	int i;
5-
	for(i=0;i<100000;++i){printf("%d",i);}
5+
	for(i=0;i<100000;++i){printf("%d\n",i);}
6
	return 0;
7
}