1 solutions
-
0
C :
#include <stdio.h> int main(void) { int x1, x2; scanf("%d%d", &x1, &x2); if(x1 > x2) printf("YES\n"); else printf("NO\n"); return 0; }C++ :
#include<cstdio> using namespace std; int main() { double x1,x2; scanf("%lf%lf",&x1,&x2); if(x1>x2) { printf("YES\n"); } else { printf("NO\n"); } return 0; }Pascal :
program y1; var a,b:integer; begin readln(a,b); if a>b then writeln('YES') else writeln('NO'); end.
- 1
Information
- ID
- 18522
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- (None)
- Tags
- # Submissions
- 0
- Accepted
- 0
- Uploaded By